Infix shorthand operators for MonEx.map/2 and MonEx.flat_map/2.
Summary
Functions
Infix alias for MonEx.map/2.
Example
f = fn x -> x * 2 end
some(5) ~> f == some(10)
none() ~> f == none()
Infix alias for MonEx.flat_map/2.
Example
f = fn x -> ok(x * 2) end
ok(5) ~>> f == ok(10)
error("Err") ~>> f == error("Err")