2023-07-16 21:52:12 -04:00
|
|
|
|
load "misc.quox"
|
|
|
|
|
load "either.quox"
|
|
|
|
|
|
|
|
|
|
namespace maybe {
|
|
|
|
|
|
|
|
|
|
def0 Tag : ★ = {nothing, just}
|
|
|
|
|
|
2023-07-18 17:12:04 -04:00
|
|
|
|
def0 Payload : Tag → ★ → ★ =
|
|
|
|
|
λ tag A ⇒ case tag return ★ of { 'nothing ⇒ True; 'just ⇒ A }
|
2023-07-16 21:52:12 -04:00
|
|
|
|
|
2023-07-18 17:12:04 -04:00
|
|
|
|
def0 Maybe : ★ → ★ =
|
2023-07-16 21:52:12 -04:00
|
|
|
|
λ A ⇒ (t : Tag) × Payload t A
|
|
|
|
|
|
|
|
|
|
def tag : 0.(A : ★) → ω.(Maybe A) → Tag =
|
|
|
|
|
λ _ x ⇒ caseω x return Tag of { (tag, _) ⇒ tag }
|
|
|
|
|
|
|
|
|
|
def Nothing : 0.(A : ★) → Maybe A =
|
|
|
|
|
λ _ ⇒ ('nothing, 'true)
|
|
|
|
|
|
2023-07-18 17:12:04 -04:00
|
|
|
|
def Just : 0.(A : ★) → A → Maybe A =
|
2023-07-16 21:52:12 -04:00
|
|
|
|
λ _ x ⇒ ('just, x)
|
|
|
|
|
|
2023-07-18 17:12:04 -04:00
|
|
|
|
def0 IsJustTag : Tag → ★ =
|
|
|
|
|
λ t ⇒ case t return ★ of { 'just ⇒ True; 'nothing ⇒ False }
|
2023-07-16 21:52:12 -04:00
|
|
|
|
|
2023-07-18 17:12:04 -04:00
|
|
|
|
def0 IsJust : (A : ★) → Maybe A → ★ =
|
2023-07-16 21:52:12 -04:00
|
|
|
|
λ A x ⇒ IsJustTag (tag A x)
|
|
|
|
|
|
|
|
|
|
def is-just? : 0.(A : ★) → ω.(x : Maybe A) → Dec (IsJust A x) =
|
|
|
|
|
λ A x ⇒
|
|
|
|
|
caseω tag A x return t ⇒ Dec (IsJustTag t) of {
|
|
|
|
|
'just ⇒ Yes True 'true;
|
|
|
|
|
'nothing ⇒ No False (λ x ⇒ x)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def0 nothing-unique :
|
2023-07-18 17:12:04 -04:00
|
|
|
|
(A : ★) → (x : True) → ('nothing, x) ≡ Nothing A : Maybe A =
|
2023-07-16 21:52:12 -04:00
|
|
|
|
λ A x ⇒
|
2023-07-18 17:12:04 -04:00
|
|
|
|
case x return x' ⇒ ('nothing, x') ≡ Nothing A : Maybe A of {
|
2023-07-16 21:52:12 -04:00
|
|
|
|
'true ⇒ δ _ ⇒ ('nothing, 'true)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def elim :
|
|
|
|
|
0.(A : ★) →
|
2023-07-21 11:57:47 -04:00
|
|
|
|
0.(P : Maybe A → ★) →
|
2023-07-16 21:52:12 -04:00
|
|
|
|
ω.(P (Nothing A)) →
|
2023-07-18 17:12:04 -04:00
|
|
|
|
ω.((x : A) → P (Just A x)) →
|
|
|
|
|
(x : Maybe A) → P x =
|
2023-07-16 21:52:12 -04:00
|
|
|
|
λ A P n j x ⇒
|
2023-07-18 17:12:04 -04:00
|
|
|
|
case x return x' ⇒ P x' of { (tag, payload) ⇒
|
|
|
|
|
(case tag
|
2023-07-16 21:52:12 -04:00
|
|
|
|
return t ⇒
|
|
|
|
|
0.(eq : tag ≡ t : Tag) → P (t, coe (i ⇒ Payload (eq @i) A) payload)
|
|
|
|
|
of {
|
|
|
|
|
'nothing ⇒
|
|
|
|
|
λ eq ⇒
|
2023-07-18 17:12:04 -04:00
|
|
|
|
case coe (i ⇒ Payload (eq @i) A) payload
|
2023-07-16 21:52:12 -04:00
|
|
|
|
return p ⇒ P ('nothing, p)
|
|
|
|
|
of { 'true ⇒ n };
|
|
|
|
|
'just ⇒ λ eq ⇒ j (coe (i ⇒ Payload (eq @i) A) payload)
|
|
|
|
|
}) (δ _ ⇒ tag)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def0 Maybe = maybe.Maybe
|
|
|
|
|
def0 Just = maybe.Just
|
|
|
|
|
def0 Nothing = maybe.Nothing
|