diff options
Diffstat (limited to 'src/Cfe/Context/Base.agda')
-rw-r--r-- | src/Cfe/Context/Base.agda | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Cfe/Context/Base.agda b/src/Cfe/Context/Base.agda index 2814a64..a428d3c 100644 --- a/src/Cfe/Context/Base.agda +++ b/src/Cfe/Context/Base.agda @@ -54,6 +54,8 @@ record Context n : Set (c ⊔ lsuc ℓ) where Γ : Vec (Type ℓ ℓ) (n ∸ m) Δ : Vec (Type ℓ ℓ) m +∙,∙ : Context 0 +∙,∙ = record { m≤n = z≤n ; Γ = [] ; Δ = [] } toVec : ∀ {n} → Context n → Vec (Type ℓ ℓ) n toVec record { m = .0 ; m≤n = _ ; Γ = Γ ; Δ = [] } = Γ |