The type held by the Bind.
val (=|<) : ('a -> 'b) -> 'a t -> 'b tInfix version of CORE.map.
val (>|=) : 'a t -> ('a -> 'b) -> 'b tInfix flipped version of CORE.map.
val (>>=) : 'a t -> ('a -> 'b t) -> 'b tInfix flipped version of CORE.bind.
val (=<<) : ('a -> 'b t) -> 'a t -> 'b tInfix version of CORE.bind.
val (>=>) : ('a -> 'b t) -> ('b -> 'c t) -> 'a -> 'c tInfix version of CORE.compose_left_to_right.
val (<=<) : ('b -> 'c t) -> ('a -> 'b t) -> 'a -> 'c tInfix version of OPERATION.compose_right_to_left.
val (>>) : unit t -> 'b t -> 'b tSequentially compose two actions, discarding any value produced by the first.
val (<<) : 'a t -> unit t -> 'a tSequentially compose two actions, discarding any value produced by the second.
val (<$>) : ('a -> 'b) -> 'a t -> 'b tInfix version of CORE.map.
val (<&>) : 'a t -> ('a -> 'b) -> 'b tFlipped and infix version of CORE.map.
val (<$) : 'a -> 'b t -> 'a tInfix version of OPERATION.replace.
val ($>) : 'a t -> 'b -> 'b tFlipped and infix version of OPERATION.replace.