Monad.Operators

Convenient, but optional, operators for working with Functors, Applicatives, and Monads.

To use these operators, simply call use Monad.Operators.

Source

Summary

lhs <|> rhs

The fmap or functor map operator

lhs <~> rhs

The apply operator

lhs ~>> rhs

The bind operator

Macros

lhs <|> rhs

The fmap or functor map operator.

See Functor.fmap/2 for more details.

Source
lhs <~> rhs

The apply operator.

See Applicative.apply/2 for more details.

Source
lhs ~>> rhs

The bind operator.

See Monad.bind/2 for more details.

Source