Validate.SelectiveSourcetype 'a t = 'a tThe type held by the Selective.
val select : ('a, 'b) Preface_core.Shims.Either.t t -> ('a -> 'b) t -> 'b tselect e f apply f if e is Left. It allow to skip effect using Right.
val branch :
('a, 'b) Preface_core.Shims.Either.t t ->
('a -> 'c) t ->
('b -> 'c) t ->
'c tbranch is like select. It chooses between two effects.
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.Selective.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.
val (<*?) : ('a, 'b) Preface_core.Shims.Either.t t -> ('a -> 'b) t -> 'b tInfix version of CORE.select.
module Syntax : Preface_specs.Selective.SYNTAX with type 'a t := 'a t