{-# OPTIONS --cubical-compatible --safe #-}
module Data.Container.Core where
open import Level using (Level; _⊔_; suc)
open import Data.Product.Base as Product using (Σ-syntax)
open import Function.Base using (_∘_; _∘′_)
open import Function.Bundles using (Inverse; _↔_)
open import Relation.Unary using (Pred; _⊆_)
infix 5 _▷_
record Container (s p : Level) : Set (suc (s ⊔ p)) where
constructor _▷_
field
Shape : Set s
Position : Shape → Set p
open Container public
⟦_⟧ : ∀ {s p ℓ} → Container s p → Set ℓ → Set (s ⊔ p ⊔ ℓ)
$\begin{pmatrix} \,\href{Data.Container.Core.html#823}{\htmlId{823}{\htmlClass{Bound}{\text{S}}}}\, \,\href{Data.Container.Core.html#630}{\htmlId{825}{\htmlClass{InductiveConstructor Operator}{\text{▷}}}}\, \,\href{Data.Container.Core.html#827}{\htmlId{827}{\htmlClass{Bound}{\text{P}}}}\, \end{pmatrix}$ X = Σ[ s ∈ S ] (P s → X)
map : ∀ {s p x y} {C : Container s p} {X : Set x} {Y : Set y} →
(X → Y) → $\begin{pmatrix} \,\href{Data.Container.Core.html#907}{\htmlId{970}{\htmlClass{Bound}{\text{C}}}}\, \end{pmatrix}$ X → $\begin{pmatrix} \,\href{Data.Container.Core.html#907}{\htmlId{980}{\htmlClass{Bound}{\text{C}}}}\, \end{pmatrix}$ Y
map f = Product.map₂ (f ∘_)
infixr 8 _⇒_ _⊸_
record _⇒_ {s₁ s₂ p₁ p₂} (C₁ : Container s₁ p₁) (C₂ : Container s₂ p₂)
: Set (s₁ ⊔ s₂ ⊔ p₁ ⊔ p₂) where
constructor _▷_
field
shape : Shape C₁ → Shape C₂
position : ∀ {s} → Position C₂ (shape s) → Position C₁ s
⟪_⟫ : ∀ {x} {X : Set x} → $\begin{pmatrix} \,\href{Data.Container.Core.html#1102}{\htmlId{1343}{\htmlClass{Bound}{\text{C₁}}}}\, \end{pmatrix}$ X → $\begin{pmatrix} \,\href{Data.Container.Core.html#1125}{\htmlId{1354}{\htmlClass{Bound}{\text{C₂}}}}\, \end{pmatrix}$ X
⟪_⟫ = Product.map shape (_∘′ position)
open _⇒_ public
record _⊸_ {s₁ s₂ p₁ p₂} (C₁ : Container s₁ p₁) (C₂ : Container s₂ p₂)
: Set (s₁ ⊔ s₂ ⊔ p₁ ⊔ p₂) where
field
shape⊸ : Shape C₁ → Shape C₂
position⊸ : ∀ {s} → Position C₂ (shape⊸ s) ↔ Position C₁ s
morphism : C₁ ⇒ C₂
morphism = record
{ shape = shape⊸
; position = Inverse.to position⊸
}
⟪_⟫⊸ : ∀ {x} {X : Set x} → $\begin{pmatrix} \,\href{Data.Container.Core.html#1477}{\htmlId{1805}{\htmlClass{Bound}{\text{C₁}}}}\, \end{pmatrix}$ X → $\begin{pmatrix} \,\href{Data.Container.Core.html#1500}{\htmlId{1816}{\htmlClass{Bound}{\text{C₂}}}}\, \end{pmatrix}$ X
⟪_⟫⊸ = ⟪ morphism ⟫
open _⊸_ public using (shape⊸; position⊸; ⟪_⟫⊸)