Contents
- ReaderT <Env, M, A> (Func<Env, K<M, A>> runReader)
- Pure (A value)
- Asks (Func<Env, A> f)
- AsksM (Func<Env, K<M, A>> f)
- Lift (Pure<A> monad)
- Lift (K<M, A> monad)
- Lift (Func<A> f)
- LiftIO (IO<A> ma)
- With <Env1> (Func<Env1, Env> f)
- Local (Func<Env, Env> f)
- MapM <M1, B> (Func<K<M, A>, K<M1, B>> f)
- Map <B> (Func<A, B> f)
- Select <B> (Func<A, B> f)
- Bind <B> (Func<A, K<ReaderT<Env, M>, B>> f)
- Bind <B> (Func<A, ReaderT<Env, M, B>> f)
- Bind <B> (Func<A, Ask<Env, B>> f)
- Bind <B> (Func<A, IO<B>> f)
- SelectMany <B, C> (Func<A, K<ReaderT<Env, M>, B>> bind, Func<A, B, C> project)
- SelectMany <B, C> (Func<A, ReaderT<Env, M, B>> bind, Func<A, B, C> project)
- SelectMany <B, C> (Func<A, K<M, B>> bind, Func<A, B, C> project)
- SelectMany <B, C> (Func<A, Pure<B>> bind, Func<A, B, C> project)
- SelectMany <B, C> (Func<A, Ask<Env, B>> bind, Func<A, B, C> project)
- SelectMany <B, C> (Func<A, IO<B>> bind, Func<A, B, C> project)
- Run (Env env)
- ReaderT <Env>
- ReaderT <Env, M>
- ReaderT
- pure <Env, M, A> (A value)
- lift <Env, M, A> (K<M, A> ma)
- liftIO <Env, M, A> (IO<A> effect)
- ask <M, Env> ()
- asks <M, A, Env> (Func<Env, A> f)
- asksM <M, Env, A> (Func<Env, K<M, A>> f)
- local <Env, M, A> (Func<Env, Env> f, ReaderT<Env, M, A> ma)
- with <Env, SubEnv, M, A> (Func<Env, SubEnv> f, ReaderT<SubEnv, M, A> ma)
Sub modules
| Extensions |
| Operators |
| Prelude |
| Trait |
record ReaderT <Env, M, A> (Func<Env, K<M, A>> runReader) Source #
ReaderT monad transformer, which adds a static environment to a given monad.
Parameters
| type | Env | Reader environment type |
| type | M | Given monad trait |
| type | A | Bound value type |
Methods
method ReaderT<Env, M, A> Pure (A value) Source #
Lift a pure value into the monad-transformer
Parameters
| param | value | Value to lift |
| returns |
| |
method ReaderT<Env, M, A> Asks (Func<Env, A> f) Source #
Extracts the environment value and maps it to the bound value
Parameters
| param | f | Environment mapping function |
| returns |
| |
method ReaderT<Env, M, A> AsksM (Func<Env, K<M, A>> f) Source #
Extracts the environment value and maps it to the bound value
Parameters
| param | f | Environment mapping function |
| returns |
| |
method ReaderT<Env, M, A> Lift (Pure<A> monad) Source #
Lifts a given monad into the transformer
Parameters
| param | monad | Monad to lift |
| returns |
| |
method ReaderT<Env, M, A> Lift (K<M, A> monad) Source #
Lifts a given monad into the transformer
Parameters
| param | monad | Monad to lift |
| returns |
| |
method ReaderT<Env, M, A> Lift (Func<A> f) Source #
Lifts a unit function into the transformer
Parameters
| param | f | Function to lift |
| returns |
| |
method ReaderT<Env, M, A> LiftIO (IO<A> ma) Source #
Lifts a unit function into the transformer
Parameters
| param | f | Function to lift |
| returns |
| |
method ReaderT<Env1, M, A> With <Env1> (Func<Env1, Env> f) Source #
Maps the Reader's environment value
Parameters
| param | f | Mapping function |
| returns |
| |
method ReaderT<Env, M, A> Local (Func<Env, Env> f) Source #
Maps the Reader's environment value
Parameters
| param | f | Mapping function |
| returns |
| |
method ReaderT<Env, M1, B> MapM <M1, B> (Func<K<M, A>, K<M1, B>> f) Source #
Maps the given monad
Parameters
| type | M1 | Trait of the monad to map to |
| param | f | Mapping function |
| returns |
| |
method ReaderT<Env, M, B> Map <B> (Func<A, B> f) Source #
Maps the bound value
Parameters
| type | B | Target bound value type |
| param | f | Mapping function |
| returns |
| |
method ReaderT<Env, M, B> Select <B> (Func<A, B> f) Source #
Maps the bound value
Parameters
| type | B | Target bound value type |
| param | f | Mapping transducer |
| returns |
| |
method ReaderT<Env, M, B> Bind <B> (Func<A, K<ReaderT<Env, M>, B>> f) Source #
Monad bind operation
Parameters
| type | B | Target bound value type |
| param | f | Mapping function |
| returns |
| |
method ReaderT<Env, M, B> Bind <B> (Func<A, ReaderT<Env, M, B>> f) Source #
Monad bind operation
Parameters
| type | B | Target bound value type |
| param | f | Mapping function |
| returns |
| |
method ReaderT<Env, M, B> Bind <B> (Func<A, Ask<Env, B>> f) Source #
Monad bind operation
Parameters
| type | B | Target bound value type |
| param | f | Mapping function |
| returns |
| |
method ReaderT<Env, M, B> Bind <B> (Func<A, IO<B>> f) Source #
Monad bind operation
Parameters
| type | B | Target bound value type |
| param | f | Mapping function |
| returns |
| |
method ReaderT<Env, M, C> SelectMany <B, C> (Func<A, K<ReaderT<Env, M>, B>> bind, Func<A, B, C> project) Source #
Monad bind operation
Parameters
| type | B | Intermediate bound value type |
| type | C | Target bound value type |
| param | bind | Monadic bind function |
| param | project | Projection function |
| returns |
| |
method ReaderT<Env, M, C> SelectMany <B, C> (Func<A, ReaderT<Env, M, B>> bind, Func<A, B, C> project) Source #
Monad bind operation
Parameters
| type | B | Intermediate bound value type |
| type | C | Target bound value type |
| param | bind | Monadic bind function |
| param | project | Projection function |
| returns |
| |
method ReaderT<Env, M, C> SelectMany <B, C> (Func<A, K<M, B>> bind, Func<A, B, C> project) Source #
Monad bind operation
Parameters
| type | B | Intermediate bound value type |
| type | C | Target bound value type |
| param | bind | Monadic bind function |
| param | project | Projection function |
| returns |
| |
method ReaderT<Env, M, C> SelectMany <B, C> (Func<A, Pure<B>> bind, Func<A, B, C> project) Source #
Monad bind operation
Parameters
| type | B | Intermediate bound value type |
| type | C | Target bound value type |
| param | bind | Monadic bind function |
| param | project | Projection function |
| returns |
| |
method ReaderT<Env, M, C> SelectMany <B, C> (Func<A, Ask<Env, B>> bind, Func<A, B, C> project) Source #
Monad bind operation
Parameters
| type | B | Intermediate bound value type |
| type | C | Target bound value type |
| param | bind | Monadic bind function |
| param | project | Projection function |
| returns |
| |
method ReaderT<Env, M, C> SelectMany <B, C> (Func<A, IO<B>> bind, Func<A, B, C> project) Source #
Monad bind operation
Parameters
| type | B | Intermediate bound value type |
| type | C | Target bound value type |
| param | bind | Monadic bind function |
| param | project | Projection function |
| returns |
| |
MonadReaderT trait implementation for ReaderT
Parameters
| type | Env | Reader environment type |
| type | M | Given monad trait |
MonadReaderT trait implementation for ReaderT
Parameters
| type | Env | Reader environment type |
| type | M | Given monad trait |
Methods
method ReaderT<Env, M, A> liftIO <Env, M, A> (IO<A> effect) Source #
Lifts a given monad into the transformer
Parameters
| param | effect | Monad to lift |
| returns |
| |