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.
val pure : 'a -> 'a tLift a value from 'a into a new 'a t.