Type
The type held by the Indexed Selective.
Functions
val select :
(('a, 'b) Stdlib.Either.t, 'index) t ->
('a -> 'b, 'index) t ->
('b, 'index) tselect e f apply f if e is Left. It allow to skip effect using Right.
val branch :
(('a, 'b) Stdlib.Either.t, 'index) t ->
('a -> 'c, 'index) t ->
('b -> 'c, 'index) t ->
('c, 'index) tbranch is like select. It chooses between two effects.
include Indexed_apply.WITH_APPLY with type ('a, 'index) t := ('a, 'index) t
val apply : ('a -> 'b, 'index) t -> ('a, 'index) t -> ('b, 'index) tMay apply a function wrapped into an t to a value also wrapped into an t.
include Indexed_apply.WITH_MAP_AND_PRODUCT
with type ('a, 'index) t := ('a, 'index) t
include Indexed_functor.WITH_MAP with type ('a, 'index) t := ('a, 'index) t
val map : ('a -> 'b) -> ('a, 'index) t -> ('b, 'index) tMapping over t from 'a to 'b.
include Indexed_apply.WITH_PRODUCT with type ('a, 'index) t := ('a, 'index) t
val product : ('a, 'index) t -> ('b, 'index) t -> ('a * 'b, 'index) tMonoidal product between two t.
include Indexed_apply.WITH_LIFT2 with type ('a, 'index) t := ('a, 'index) t
val lift2 :
('a -> 'b -> 'c) ->
('a, 'index) t ->
('b, 'index) t ->
('c, 'index) tLift a binary function that acts on arbitrary values into a function that acts t values.
val lift : ('a -> 'b) -> ('a, 'index) t -> ('b, 'index) tMapping over t from 'a to 'b.
val lift3 :
('a -> 'b -> 'c -> 'd) ->
('a, 'index) t ->
('b, 'index) t ->
('c, 'index) t ->
('d, 'index) tLift a ternary function that acts on arbitrary values into a function that acts t values.
val replace : 'a -> ('b, 'index) t -> ('a, 'index) tCreate a new t, replacing all values of the given functor by given a value of 'a.
val void : ('a, 'index) t -> (unit, 'index) tCreate a new t, replacing all values in the given functor by unit.
val if_ :
(bool, 'index) t ->
('a, 'index) t ->
('a, 'index) t ->
('a, 'index) tSame of branch but using a Boolean as disjunction.
val bind_bool : (bool, 'index) t -> (bool -> ('a, 'index) t) -> ('a, 'index) tMonad bind specialized for Boolean.
val when_ : (bool, 'index) t -> (unit, 'index) t -> (unit, 'index) tConditionally perform an effect.
val exists : ('a -> (bool, 'index) t) -> 'a list -> (bool, 'index) tSelective version of List.exists.
val for_all : ('a -> (bool, 'index) t) -> 'a list -> (bool, 'index) tSelective version of List.for_all.
val or_ : (bool, 'index) t -> (bool, 'index) t -> (bool, 'index) tval and_ : (bool, 'index) t -> (bool, 'index) t -> (bool, 'index) tval while_ : (bool, 'index) t -> (unit, 'index) tKeep checking an effectful condition while it holds.
Infix operators
module Infix : INFIX with type ('a, 'index) t := ('a, 'index) tval (<*>) : ('a -> 'b, 'index) t -> ('a, 'index) t -> ('b, 'index) tApplicative functor of ('a -> 'b) t over ('a, 'index) t to ('b, 'index) t.
val (<**>) : ('a, 'index) t -> ('a -> 'b, 'index) t -> ('b, 'index) tFlipped Applicative functor of ('a -> 'b) t over ('a, 'index) t to ('b, 'index) t.
val (*>) : (unit, 'index) t -> ('a, 'index) t -> ('a, 'index) tDiscard the value of the first argument.
val (<*) : ('a, 'index) t -> (unit, 'index) t -> ('a, 'index) tDiscard the value of the second argument.
val (<$>) : ('a -> 'b) -> ('a, 'index) t -> ('b, 'index) tInfix version of CORE.map.
val (<&>) : ('a, 'index) t -> ('a -> 'b) -> ('b, 'index) tFlipped and infix version of CORE.map.
val (<$) : 'a -> ('b, 'index) t -> ('a, 'index) tval ($>) : ('a, 'index) t -> 'b -> ('b, 'index) tFlipped and infix version of OPERATION.replace.
val (<*?) :
(('a, 'b) Stdlib.Either.t, 'index) t ->
('a -> 'b, 'index) t ->
('b, 'index) tval (<||>) : (bool, 'index) t -> (bool, 'index) t -> (bool, 'index) tInfix version of CORE.or_.
val (<&&>) : (bool, 'index) t -> (bool, 'index) t -> (bool, 'index) tInfix version of CORE.and_.
Syntax
include Indexed_apply.SYNTAX with type ('a, 'index) t := ('a, 'index) t
val let+ : ('a, 'index) t -> ('a -> 'b) -> ('b, 'index) tlet operator for mapping.
val and+ : ('a, 'index) t -> ('b, 'index) t -> ('a * 'b, 'index) tand operator for the monoidal product.