preface.make
Via_apply.Req
preface
preface.core
preface.specs
preface.stdlib
type 'a t
The type held by the Applicative.
Applicative
val pure : 'a -> 'a t
Lift a value from 'a into a new 'a t.
'a
'a t
val apply : ('a -> 'b) t -> 'a t -> 'b t
Applicative functor of ('a -> 'b) t over 'a t to 'b t.
('a -> 'b) t
'b t