Type
The type held by the Apply.
Type
Functions
val map : ('a -> 'b) -> 'a t -> 'b tMapping over t from 'a to 'b.
val apply : ('a -> 'b) t -> 'a t -> 'b tMay apply a function wrapped into an t to a value also wrapped into an t.
val product : 'a t -> 'b t -> ('a * 'b) tMonoidal product between two t.
val lift2 : ('a -> 'b -> 'c) -> 'a t -> 'b t -> 'c tLift a binary function that acts on arbitrary values into a function that acts t values.
val lift : ('a -> 'b) -> 'a t -> 'b tMapping over t from 'a to 'b.
val lift3 : ('a -> 'b -> 'c -> 'd) -> 'a t -> 'b t -> 'c t -> 'd tLift a ternary function that acts on arbitrary values into a function that acts t values.
val replace : 'a -> 'b t -> 'a tCreate a new t, replacing all values of the given functor by given a value of 'a.
val void : 'a t -> unit tCreate a new t, replacing all values in the given functor by unit.
Infix operators
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.
Syntax
val let+ : 'a t -> ('a -> 'b) -> 'b tlet operator for mapping.
val and+ : 'a t -> 'b t -> ('a * 'b) tand operator for the monoidal product.