EResult ε σ α
is equivalent to Except ε α × σ
, but using a single
combined inductive yields a more efficient data representation.
- ok
{ε : Type u}
{σ : Type v}
{α : Type w}
: α → σ → EResult ε σ α
A success value of type
α
, and a new stateσ
. - error
{ε : Type u}
{σ : Type v}
{α : Type w}
: ε → σ → EResult ε σ α
A failure value of type
ε
, and a new stateσ
.
Instances For
instance
Lake.instInhabitedEResult
{α : Type u_1}
{σ : Type u_2}
{ε : Type u_3}
[Inhabited α]
[Inhabited σ]
:
Equations
- Lake.instInhabitedEResult = { default := Lake.EResult.ok default default }
instance
Lake.instInhabitedEResult_1
{ε : Type u_1}
{σ : Type u_2}
{α : Type u_3}
[Inhabited ε]
[Inhabited σ]
:
Equations
- Lake.instInhabitedEResult_1 = { default := Lake.EResult.error default default }
@[inline]
def
Lake.EResult.modifyState
{σ : Type u_1}
{σ' : Type u_2}
{ε : Type u_3}
{α : Type u_4}
(f : σ → σ')
:
Equations
Instances For
@[inline]
def
Lake.EResult.toProd
{ε : Type u_1}
{σ : Type u_2}
{α : Type u_3}
:
EResult ε σ α → Except ε α × σ
Convert a EResult ε σ α
into Except ε α × σ
.
Equations
Instances For
@[inline]
Equations
Instances For
Equations
- Lake.instFunctorEResult = { map := fun {α β : Type ?u.26} => Lake.EResult.map, mapConst := fun {α β : Type ?u.26} => Lake.EResult.map ∘ Function.const β }
@[inline]
def
Lake.EStateT.catchExceptions
{m : Type u → Type u_1}
{ε σ α : Type u}
[Monad m]
(x : EStateT ε σ m α)
(h : ε → StateT σ m α)
:
StateT σ m α
Equations
- x.catchExceptions h s = do let __do_lift ← x s match __do_lift with | Lake.EResult.ok a s => pure (a, s) | Lake.EResult.error e s => h e s
Instances For
Equations
- Lake.EStateT.instMonadLiftOfMonad = { monadLift := fun {α : Type ?u.36} => Lake.EStateT.lift }
instance
Lake.EStateT.instPure
{ε : Type u}
{σ : Type v}
{m : Type (max (max u v) u_1) → Type u_2}
[Pure m]
:
Equations
- Lake.EStateT.instPure = { pure := fun {α : Type ?u.36} => Lake.EStateT.pure }
@[inline]
def
Lake.EStateT.map
{ε : Type u}
{σ : Type v}
{α β : Type w}
{m : Type (max (max u v) w) → Type u_1}
[Functor m]
(f : α → β)
(x : EStateT ε σ m α)
:
EStateT ε σ m β
The map
operation of the EStateT
monad transformer.
Equations
- One or more equations did not get rendered due to their size.
Instances For
instance
Lake.EStateT.instFunctor
{ε : Type u}
{σ : Type v}
{m : Type (max (max u v) u_1) → Type u_2}
[Functor m]
:
Equations
- Lake.EStateT.instFunctor = { map := fun {α β : Type ?u.41} => Lake.EStateT.map, mapConst := fun {α β : Type ?u.41} => Lake.EStateT.map ∘ Function.const β }
@[inline]
def
Lake.EStateT.bind
{ε : Type u}
{σ : Type v}
{α β : Type w}
{m : Type (max (max u v) w) → Type u_1}
[Monad m]
(x : EStateT ε σ m α)
(f : α → EStateT ε σ m β)
:
EStateT ε σ m β
The bind
operation of the EStateT
monad transformer.
Equations
- x.bind f s = do let __do_lift ← x s match __do_lift with | Lake.EResult.ok a s => f a s | Lake.EResult.error e s => pure (Lake.EResult.error e s)
Instances For
@[inline]
def
Lake.EStateT.seqRight
{ε : Type u}
{σ : Type v}
{α β : Type w}
{m : Type (max (max u v) w) → Type u_1}
[Monad m]
(x : EStateT ε σ m α)
(y : Unit → EStateT ε σ m β)
:
EStateT ε σ m β
The seqRight
operation of the EStateT
monad transformer.
Equations
- x.seqRight y s = do let __do_lift ← x s match __do_lift with | Lake.EResult.ok a s => y () s | Lake.EResult.error e s => pure (Lake.EResult.error e s)
Instances For
instance
Lake.EStateT.instMonadStateOfOfPure
{ε : Type u}
{σ : Type v}
{m : Type (max u v) → Type u_1}
[Pure m]
:
MonadStateOf σ (EStateT ε σ m)
Equations
- Lake.EStateT.instMonadStateOfOfPure = { get := Lake.EStateT.get, set := Lake.EStateT.set, modifyGet := fun {α : Type ?u.36} => Lake.EStateT.modifyGet }
@[inline]
def
Lake.EStateT.tryCatch
{ε : Type u}
{σ : Type v}
{α : Type w}
{m : Type (max (max u v) w) → Type u_1}
[Monad m]
(x : EStateT ε σ m α)
(handle : ε → EStateT ε σ m α)
:
EStateT ε σ m α
Equations
- x.tryCatch handle s = do let __do_lift ← x s match __do_lift with | Lake.EResult.error e s => handle e s | ok => pure ok
Instances For
instance
Lake.EStateT.instMonadExceptOfOfMonad
{ε : Type u}
{σ : Type v}
{m : Type (max (max u v) u_1) → Type u_2}
[Monad m]
:
MonadExceptOf ε (EStateT ε σ m)
Equations
- Lake.EStateT.instMonadExceptOfOfMonad = { throw := fun {α : Type ?u.37} => Lake.EStateT.throw, tryCatch := fun {α : Type ?u.37} => Lake.EStateT.tryCatch }
@[inline]
def
Lake.EStateT.orElse
{ε : Type u}
{σ : Type v}
{α : Type w}
{m : Type (max (max u v) w) → Type u_1}
[Monad m]
(x₁ : EStateT ε σ m α)
(x₂ : Unit → EStateT ε σ m α)
:
EStateT ε σ m α
Equations
- x₁.orElse x₂ s = do let __do_lift ← x₁ s match __do_lift with | Lake.EResult.error a s => x₂ () s | ok => pure ok
Instances For
instance
Lake.EStateT.instOrElseOfMonad
{ε : Type u}
{σ : Type v}
{α : Type w}
{m : Type (max (max u v) w) → Type u_1}
[Monad m]
:
Equations
- Lake.EStateT.instOrElseOfMonad = { orElse := Lake.EStateT.orElse }
@[inline]
def
Lake.EStateT.adaptExcept
{ε ε' : Type u}
{σ : Type v}
{α : Type w}
{m : Type (max (max u v) w) → Type u_1}
[Functor m]
(f : ε → ε')
(x : EStateT ε σ m α)
:
EStateT ε' σ m α
Map the exception type of a EStateT ε σ m α
by a function f : ε → ε'
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
@[always_inline]
instance
Lake.EStateT.instMonadFinallyOfMonad
{ε : Type u}
{σ : Type v}
{m : Type (max (max u v) u_1) → Type u_2}
[Monad m]
:
MonadFinally (EStateT ε σ m)
Equations
- One or more equations did not get rendered due to their size.