/Prelude-v21.1.0/Bool/build.dhall

Copy path to clipboard

build is the inverse of fold

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