Module type Applicative.WITH_PURE_AND_APPLY

Minimal interface using apply.

type 'a t

The type held by the Applicative.

inline

include Indexed_applicative.WITH_PURE_AND_APPLY with type ('a, _) t := 'a t
include Indexed_applicative.WITH_PURE with type ('a, 'index) t := 'a t
val pure : 'a -> 'a t

Lift a value from 'a into a new t.

include Indexed_apply.WITH_APPLY with type ('a, 'index) t := 'a t
val apply : ('a -> 'b) t -> 'a t -> 'b t

May apply a function wrapped into an t to a value also wrapped into an t.