/Prelude-v16.0.0/Bool/build

Copy path to clipboard

Examples

build (λ(bool : Type) → λ(true : bool) → λ(false : bool) → true) ≡ True
build (λ(bool : Type) → λ(true : bool) → λ(false : bool) → false) ≡ False

Source

{-
`build` is the inverse of `fold`
-}
let build
: (∀(bool : Type) → ∀(true : bool) → ∀(false : bool) → bool) → Bool
= λ(f : ∀(bool : Type) → ∀(true : bool) → ∀(false : bool) → bool)
f Bool True False

let example0 =
assert
: build (λ(bool : Type) → λ(true : bool) → λ(false : bool) → true) ≡ True

let example1 =
assert
: build (λ(bool : Type) → λ(true : bool) → λ(false : bool) → false)
≡ False

in build