- none: {α : Type u} → Lean.LOption α
- some: {α : Type u} → α → Lean.LOption α
- undef: {α : Type u} → Lean.LOption α
Equations
- Lean.instInhabitedLOption = { default := Lean.LOption.none }
Equations
- Lean.instBEqLOption = { beq := [anonymous] }
Equations
- One or more equations did not get rendered due to their size.
Equations
- Option.toLOption _fun_discr = match _fun_discr with | none => Lean.LOption.none | some a => Lean.LOption.some a
@[inline]
Equations
- toLOptionM x = do let b ← x pure (Option.toLOption b)