Equations
Equations
- Option.instBEq = { beq := Option.beqOption✝ }
Lifts an optional value to any Alternative
, sending none
to failure
.
Instances For
@[inline]
Keeps an optional value only if it satisfies the predicate p
.
Equations
Instances For
@[inline]
Checks that an optional value is not none
and the value satisfies a predicate p
.
Instances For
Equations
- Option.instOrElse = { orElse := Option.orElse }
instance
Option.instDecidableRelLt
{α : Type u_1}
{β : Type u_2}
(r : α → β → Prop)
[s : DecidableRel r]
:
@[simp]
@[simp]
@[simp]
@[simp]
@[inline]
An elimination principle for Option
. It is a nondependent version of Option.recOn
.
Instances For
@[simp]
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
Instances For
@[inline]
def
Option.mapA
{m : Type u_1 → Type u_2}
[Applicative m]
{α : Type u_3}
{β : Type u_1}
(f : α → m β)
:
Like Option.mapM
but for applicative functors.
Instances For
@[inline]
If you maybe have a monadic computation in a [Monad m]
which produces a term of type α
, then
there is a naturally associated way to always perform a computation in m
which maybe produces a
result.
Instances For
@[inline]
def
Option.elimM
{m : Type u_1 → Type u_2}
{α β : Type u_1}
[Monad m]
(x : m (Option α))
(y : m β)
(z : α → m β)
:
m β
A monadic analogue of Option.elim
.
Equations
- Option.elimM x y z = do let __do_lift ← x __do_lift.elim y z
Instances For
@[simp]
@[simp]
Equations
- Option.instMin = { min := Option.min }
@[simp]
@[simp]
Equations
- Option.instMax = { max := Option.max }
@[simp]
@[simp]
@[always_inline]
Equations
- instFunctorOption = { map := fun {α β : Type ?u.10} => Option.map, mapConst := fun {α β : Type ?u.10} => Option.map ∘ Function.const β }
@[always_inline]
Equations
- instAlternativeOption = Alternative.mk (fun {α : Type ?u.6} => none) fun {α : Type ?u.6} => Option.orElse
Instances For
Equations
- instMonadExceptOfUnitOption = { throw := fun {α : Type ?u.7} (x : Unit) => none, tryCatch := fun {α : Type ?u.7} => Option.tryCatch }