Validate.ApplicativeSourcetype 'a t = 'a tThe type held by the Applicative.
val pure : 'a -> 'a tLift a value from 'a into a new 'a t.
Mapping over from 'a and 'b to 'c over 'a t and 'b t to 'c t.
Mapping over from 'a and 'b and 'c to 'd over 'a t and 'b t and 'c t to 'd t.
Create a new 'a t, replacing all values in the 'b t by given a value of 'a.
module Infix : Preface_specs.Applicative.INFIX with type 'a t := 'a tFlipped Applicative functor of ('a -> 'b) t over 'a t to 'b t.
Infix version of Preface_specs.Functor.CORE.map.
Flipped and infix version of Preface_specs.Functor.CORE.map.
Infix version of Preface_specs.Functor.OPERATION.replace.
Flipped and infix version of Preface_specs.Functor.OPERATION.replace.
module Syntax : Preface_specs.Applicative.SYNTAX with type 'a t := 'a tmodule Traversable
(A : Preface_specs.Applicative.API) :
Preface_specs.Traversable.API with type 'a iter = 'a t and type 'a t = 'a A.t