Control.Helpers

A set of helper functions to ease the process of working with the Control.* protocols.

Summary

Functions

Bind operator

Functions

left ~>> right

Bind operator.

The bind operator (>>= in Haskell) removes the need for piping to a call to Control.Monad.bind/2, so

functor |> Control.Monad.bind(fun)

becomes

functor ~>> fun