val (<*>) : ('a -> 'b, 'index) t -> ('a, 'index) t -> ('b, 'index) tApplicative functor of ('a -> 'b) t over ('a, 'index) t to ('b, 'index) t.
val (<**>) : ('a, 'index) t -> ('a -> 'b, 'index) t -> ('b, 'index) tFlipped Applicative functor of ('a -> 'b) t over ('a, 'index) t to ('b, 'index) t.
val (*>) : (unit, 'index) t -> ('a, 'index) t -> ('a, 'index) tDiscard the value of the first argument.
val (<*) : ('a, 'index) t -> (unit, 'index) t -> ('a, 'index) tDiscard the value of the second argument.
val (<$>) : ('a -> 'b) -> ('a, 'index) t -> ('b, 'index) tInfix version of CORE.map.
val (<&>) : ('a, 'index) t -> ('a -> 'b) -> ('b, 'index) tFlipped and infix version of CORE.map.
val (<$) : 'a -> ('b, 'index) t -> ('a, 'index) tInfix version of OPERATION.replace.
val ($>) : ('a, 'index) t -> 'b -> ('b, 'index) tFlipped and infix version of OPERATION.replace.
val (<*?) :
(('a, 'b) Stdlib.Either.t, 'index) t ->
('a -> 'b, 'index) t ->
('b, 'index) tInfix version of CORE.select.
val (<||>) : (bool, 'index) t -> (bool, 'index) t -> (bool, 'index) tInfix version of CORE.or_.
val (<&&>) : (bool, 'index) t -> (bool, 'index) t -> (bool, 'index) tInfix version of CORE.and_.