Documentation

Init.Control.Reader

@[inline]
def ReaderT.orElse {m : Type u_1 → Type u_2} {ρ : Type u_1} {α : Type u_1} [Alternative m] (x₁ : ReaderT ρ m α) (x₂ : UnitReaderT ρ m α) :
ReaderT ρ m α
Equations
Instances For
    @[inline]
    def ReaderT.failure {m : Type u_1 → Type u_2} {ρ : Type u_1} {α : Type u_1} [Alternative m] :
    ReaderT ρ m α
    Equations
    Instances For
      instance ReaderT.instAlternativeReaderT {m : Type u_1 → Type u_2} {ρ : Type u_1} [Alternative m] [Monad m] :
      Equations
      • ReaderT.instAlternativeReaderT = Alternative.mk (fun {α} => ReaderT.failure) fun {α} => ReaderT.orElse
      instance instMonadControlReaderT {m : Type u_1 → Type u_2} {ρ : Type u_1} :
      Equations
      • instMonadControlReaderT = { stM := id, liftWith := fun {α} f ctx => f fun {β} x => x ctx, restoreM := fun {α} x x_1 => x }
      @[always_inline]
      instance ReaderT.tryFinally {m : Type u_1 → Type u_2} {ρ : Type u_1} [MonadFinally m] [Monad m] :
      Equations
      • ReaderT.tryFinally = { tryFinally' := fun {α β} x h ctx => tryFinally' (x ctx) fun a? => h a? ctx }
      @[reducible]
      def ReaderM (ρ : Type u) (α : Type u) :
      Equations
      Instances For