ansible/dhall/Prelude/Optional/concat.dhall
2024-11-26 00:55:56 -05:00

14 lines
508 B
Text

--| Flatten two `Optional` layers into a single `Optional` layer
let concat
: ∀(a : Type) → Optional (Optional a) → Optional a
= λ(a : Type) →
λ(x : Optional (Optional a)) →
merge { Some = λ(y : Optional a) → y, None = None a } x
let example0 = assert : concat Natural (Some (Some 1)) ≡ Some 1
let example1 = assert : concat Natural (Some (None Natural)) ≡ None Natural
let example2 = assert : concat Natural (None (Optional Natural)) ≡ None Natural
in concat