Applies the rhs as an argument to lhs in the context of the lhs monad.
Arguments
- lhs
left side of infix
- rhs
right side of infix
Value
rhs(lhs) accounting in the (monad) context of lhs
Details
Essentially calls lhs$bind(rhs) which for most cases, will return rhs(lhs)
with whatever context the monad provides.