Contents
class EitherExtensions Source #
class EitherExtensions Source #
class EitherExtensions Source #
class EitherExtensions Source #
class EitherExtensions Source #
class EitherExtensions Source #
Operators
operator >> (K<Either<L>, A> ma, Func<A, K<Either<L>, B>> f) Source #
Monad bind operator
Parameters
| param | ma | Monad to bind |
| param | f | Binding function |
| returns | Mapped monad | |
operator >> (K<Either<L>, A> lhs, K<Either<L>, B> rhs) Source #
Sequentially compose two actions, discarding any value produced by the first, like sequencing operators (such as the semicolon) in C#.
Parameters
| param | lhs | First action to run |
| param | rhs | Second action to run |
| returns | Result of the second action | |