val (=>>) : 'a t -> ('a t -> 'b) -> 'b tInfix flipped version of CORE.extend.
val (<<=) : ('a t -> 'b) -> 'a t -> 'b tInfix version of CORE.extend.
val (=>=) : ('a t -> 'b) -> ('b t -> 'c) -> 'a t -> 'cInfix version of CORE.compose_left_to_right.
val (=<=) : ('b t -> 'c) -> ('a t -> 'b) -> 'a t -> 'cInfix version of OPERATION.compose_right_to_left.
val (<@@>) : 'a t -> ('a -> 'b) t -> 'b tApplicative functor of ('a -> 'b) t over ('a, 'index) t to ('b, 'index) t.
val (<@>) : ('a -> 'b) t -> 'a t -> 'b tApplicative functor of ('a -> 'b) t over ('a, 'index) t to ('b, 'index) t.
val (@>) : unit t -> 'b t -> 'b tDiscard the value of the first argument.
val (<@) : 'a t -> unit t -> 'a tDiscard the value of the second argument.
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.