runReader -package:pipes

Runs a Reader and extracts the final value from it. (The inverse of reader.)
Run Reader as HTTP API data parser.
Run a Reader effect with a constant value.
Encapsulation of a state-reading computation, taking a value for the state. Typical usage in arrow notation:
proc p -> ...
(|runReader cmd|) env
Run the Reader effect with the given initial environment.
Run a Reader effect with the given initial environment.
Run a Reader effect with the passed environment value.
runReader a ask = pure a
runReader a (pure b) = pure b
runReader a (local f m) = runReader (f a) m
Run a Reader effect with a constant value.
Run ReaderT in the base monad Since 1.0.11
Evaluate the inner monad of a stream as ReaderT.
Given an environment and a MachineT that runs in ReaderT e m, produce a MachineT that runs in m.
Evaluate the inner monad of a stream as ReaderT.
Supply a ReaderT environment before running the cell
Supply a ReaderT environment live
Run ReaderT in the base monad Since 1.0.11
Remove ("run") a ReaderT layer from the monad stack by making it an explicit input to the behaviour.
Remove a ReaderT layer by passing the readonly environment explicitly.