Over_selective.Fval 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.
include Preface_specs.Applicative.WITH_PURE with type 'a t := 'a tinclude Preface_specs.Applicative.WITH_PURE with type 'a t := 'a tinclude Preface_specs.Apply.WITH_MAP_AND_PRODUCT with type 'a t := 'a tinclude Preface_specs.Functor.WITH_MAP with type 'a t := 'a tinclude Preface_specs.Applicative.WITH_PURE with type 'a t := 'a tval pure : 'a -> 'a tLift a value from 'a into a new 'a t.