Primavera.InfixSourceInfix operators.
f <$> x is map f x (infix version of map)
a <$ x is replace a x (infix version of replace)
x $> a is replace a x (infix (flipped) version of replace)
f <*> x is apply f x (infix version of apply)
a <&> b is zip a b (infix version of zip)
a <* b Perform a and b but discard b.
a *> b Perform a and b but discard a.
a << b Sequentially perform a following by b but discard b.
a >> b Sequentially perform a following by b but discard a.
m >>= f is bind m f (infix version of bind)
f =<< m is bind m f (infix (flipped) version of bind)
f <=< g is compose f g (infix version of compose)