LanguageExt.Core ► Monads ► Free ► Operators
Contents
class FreeExtensions Source #
class FreeExtensions Source #
class FreeExtensions Source #
class FreeExtensions Source #
Operators
operator >> (K<Free<F>, A> ma, Func<A, K<Free<F>, B>> f) Source #
Monad bind operator
Parameters
| param | ma | Monad to bind |
| param | f | Binding function |
| returns | Mapped monad | |
operator >> (K<Free<F>, A> lhs, K<Free<F>, 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 | |