Equations
Equations
- Option.instBEq = { beq := Option.beqOption✝ }
Sequencing of Option
computations.
From the perspective of Option
as computations that might fail, this function sequences
potentially-failing computations, failing if either fails. From the perspective of Option
as a
collection with at most one element, the function is applied to the element if present, and the
final result is empty if either the initial or the resulting collections are empty.
This function is often accessed via the >>=
operator from the Bind (Option α)
instance, or
implicitly via do
-notation, but it is also idiomatic to call it using generalized field
notation.
Examples:
Runs the monadic action f
on o
's value, if any, and returns the result, or none
if there is
no value.
From the perspective of Option
as a collection with at most one element, the monadic the function
is applied to the element if present, and the final result is empty if either the initial or the
resulting collections are empty.
Equations
- Option.bindM f (some a) = do let __do_lift ← f a pure __do_lift
- Option.bindM f o = pure none
Runs a monadic function f
on an optional value, returning the result. If the optional value is
none
, the function is not called and the result is also none
.
From the perspective of Option
as a container with at most one element, this is analogous to
List.mapM
, returning the result of running the monadic function on all elements of the container.
Option.mapA
is the corresponding operation for applicative functors.
Equations
- Option.mapM f (some a) = do let __do_lift ← f a pure (some __do_lift)
- Option.mapM f o = pure none
Keeps an optional value only if it satisfies a Boolean predicate.
If Option
is thought of as a collection that contains at most one element, then Option.filter
is
analogous to List.filter
or Array.filter
.
Examples:
Checks whether an optional value either satisfies a Boolean predicate or is none
.
Examples:
- `(some 33).all (· % 2 == 0) = false
- `(some 22).all (· % 2 == 0) = true
- `none.all (fun x : Nat => x % 2 == 0) = true
Equations
- Option.all p (some val) = p val
- Option.all p none = true
Checks whether an optional value is not none
and satisfies a Boolean predicate.
Examples:
- `(some 33).any (· % 2 == 0) = false
- `(some 22).any (· % 2 == 0) = true
- `none.any (fun x : Nat => true) = false
Equations
- Option.any p (some val) = p val
- Option.any p none = false
Equations
- Option.instOrElse = { orElse := Option.orElse }
Returns the first of its arguments that is some
, or none
if neither is some
.
This is similar to the <|>
operator, also known as OrElse.orElse
, but both arguments are always
evaluated without short-circuiting.
Lifts an ordering relation to Option
, such that none
is the least element.
It can be understood as adding a distinguished least element, represented by none
, to both α
and
β
.
This definition is part of the implementation of the LT (Option α)
instance. However, because it
can be used with heterogeneous relations, it is sometimes useful on its own.
Examples:
Option.lt (fun n k : Nat => n < k) none none = False
Option.lt (fun n k : Nat => n < k) none (some 3) = True
Option.lt (fun n k : Nat => n < k) (some 3) none = False
Option.lt (fun n k : Nat => n < k) (some 4) (some 5) = True
Option.lt (fun n k : Nat => n < k) (some 4) (some 4) = False
Equations
Instances For
Applies a function to a two optional values if both are present. Otherwise, if one value is present, it is returned and the function is not used.
The value is some (fn a b)
if the inputs are some a
and some b
. Otherwise, the behavior is
equivalent to Option.orElse
: if only one input is some x
, then the value is some x
, and if
both are none
, then the value is none
.
Examples:
Option.merge (· + ·) none (some 3) = some 3
Option.merge (· + ·) (some 2) (some 3) = some 5
Option.merge (· + ·) (some 2) none = some 2
Option.merge (· + ·) none none = none
Equations
- Option.merge fn none none = none
- Option.merge fn (some x_2) none = some x_2
- Option.merge fn none (some y) = some y
- Option.merge fn (some x_2) (some y) = some (fn x_2 y)
A case analysis function for Option
.
Given a value for none
and a function to apply to the contents of some
, Option.elim
checks
which constructor a given Option
consists of, and uses the appropriate argument.
Option.elim
is an elimination principle for Option
. In particular, it is a non-dependent version
of Option.recOn
. It can also be seen as a combination of Option.map
and Option.getD
.
Examples:
(some "hello").elim 0 String.length = 5
none.elim 0 String.length = 0
Returns none
if a value doesn't satisfy a predicate, or the value itself otherwise.
From the perspective of Option
as computations that might fail, this function is a run-time
assertion operator in the Option
monad.
Examples:
Option.guard (· > 2) 1 = none
Option.guard (· > 2) 5 = some 5
Applies a function to a two optional values if both are present. Otherwise, if one value is present, it is returned and the function is not used.
The value is some (f a b)
if the inputs are some a
and some b
. Otherwise, the behavior is
equivalent to Option.orElse
. If only one input is some x
, then the value is some x
. If both
are none
, then the value is none
.
Examples:
Option.liftOrGet (· + ·) none (some 3) = some 3
Option.liftOrGet (· + ·) (some 2) (some 3) = some 5
Option.liftOrGet (· + ·) (some 2) none = some 2
Option.liftOrGet (· + ·) none none = none
Equations
- Option.liftOrGet f none none = none
- Option.liftOrGet f (some x_2) none = some x_2
- Option.liftOrGet f none (some y) = some y
- Option.liftOrGet f (some x_2) (some y) = some (f x_2 y)
Lifts a relation α → β → Prop
to a relation Option α → Option β → Prop
by just adding
none ~ none
.
- some {α : Type u_1} {β : Type u_2} {r : α → β → Prop} {a : α} {b : β} : r a b → Rel r (Option.some a) (Option.some b)
- none {α : Type u_1} {β : Type u_2} {r : α → β → Prop} : Rel r Option.none Option.none
Applies a function in some applicative functor to an optional value, returning none
with no
effects if the value is missing.
This is analogous to Option.mapM
for monads.
Equations
- Option.mapA f none = pure none
- Option.mapA f (some a) = some <$> f a
Converts an optional monadic computation into a monadic computation of an optional value.
Example:
#eval show IO (Option String) from
Option.sequence <| some do
IO.println "hello"
return "world"
hello
some "world"
A monadic case analysis function for Option
.
Given a fallback computation for none
and a monadic operation to apply to the contents of some
,
Option.elimM
checks which constructor a given Option
consists of, and uses the appropriate
argument.
Option.elimM
can also be seen as a combination of Option.mapM
and Option.getDM
. It is a
monadic analogue of Option.elim
.
Equations
- Option.elimM x y z = do let __do_lift ← x __do_lift.elim y z
The minimum of two optional values, with none
treated as the least element. This function is
usually accessed through the Min (Option α)
instance, rather than directly.
Prior to nightly-2025-02-27
, none
was treated as the greatest element, so
min none (some x) = min (some x) none = some x
.
Examples:
Option.min (some 2) (some 5) = some 2
Option.min (some 5) (some 2) = some 2
Option.min (some 2) none = none
Option.min none (some 5) = none
Option.min none none = none
Equations
- Option.instMin = { min := Option.min }
The maximum of two optional values.
This function is usually accessed through the Max (Option α)
instance, rather than directly.
Examples:
Option.max (some 2) (some 5) = some 5
Option.max (some 5) (some 2) = some 5
Option.max (some 2) none = some 2
Option.max none (some 5) = some 5
Option.max none none = none
Equations
- Option.instMax = { max := Option.max }
Equations
- instLTOption = { lt := Option.lt fun (x1 x2 : α) => x1 < x2 }
Equations
- instLEOption = { le := Option.le fun (x1 x2 : α) => x1 ≤ x2 }
Equations
- instFunctorOption = { map := fun {α β : Type ?u.9} => Option.map }
Equations
- One or more equations did not get rendered due to their size.
Equations
- instAlternativeOption = { toApplicative := Monad.toApplicative, failure := fun {α : Type ?u.5} => none, orElse := fun {α : Type ?u.5} => Option.orElse }
Equations
- liftOption (some val) = pure val
- liftOption none = failure
Recover from failing Option
computations with a handler function.
This function is usually accessed through the MonadExceptOf Unit Option
instance.
Examples:
Option.tryCatch none (fun () => some "handled") = some "handled"
Option.tryCatch (some "succeeded") (fun () => some "handled") = some "succeeded"
Equations
- instMonadExceptOfUnitOption = { throw := fun {α : Type ?u.6} (x : Unit) => none, tryCatch := fun {α : Type ?u.6} => Option.tryCatch }