preface.make
Over_applicative.A
preface
preface.core
preface.specs
preface.stdlib
type 'a t
The type held by the Applicative.
Applicative
val apply : ('a -> 'b) t -> 'a t -> 'b t
Applicative functor of ('a -> 'b) t over 'a t to 'b t.
('a -> 'b) t
'a t
'b t
val map : ('a -> 'b) -> 'a t -> 'b t
Mapping over from 'a to 'b over 'a t to 'b t.
'a
'b
val product : 'a t -> 'b t -> ('a * 'b) t
Product functor mapping from 'a t and 'b t to ('a * 'b) t.
('a * 'b) t
val pure : 'a -> 'a t
Lift a value from 'a into a new 'a t.
val lift2 : ('a -> 'b -> 'c) -> 'a t -> 'b t -> 'c t
Mapping over from 'a and 'b to 'c over 'a t and 'b t to 'c t.
'c
'c t