val (<*>) : ('a -> 'b) t -> 'a t -> 'b tApplicative functor of ('a -> 'b) t over ('a, 'index) t to ('b, 'index) t.
val (<**>) : 'a t -> ('a -> 'b) t -> 'b tFlipped Applicative functor of ('a -> 'b) t over ('a, 'index) t to ('b, 'index) t.
val (*>) : unit t -> 'a t -> 'a 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.
val (<*?) : ('a, 'b) Stdlib.Either.t t -> ('a -> 'b) t -> 'b tInfix version of CORE.select.
val (<||>) : bool t -> bool t -> bool tInfix version of CORE.or_.
val (<&&>) : bool t -> bool t -> bool tInfix version of CORE.and_.