Indexed_comonad.Operation
module Core : Preface_specs.Indexed_comonad.CORE
type ('a, 'index) t = ('a, 'index) Core.t
The type held by the Indexed Comonad
.
Lift a binary function that acts on arbitrary values into a function that acts t
values.
val lift3 :
('a -> 'b -> 'c -> 'd) ->
('a, 'index) t ->
('b, 'index) t ->
('c, 'index) t ->
('d, 'index) t
Lift a ternary function that acts on arbitrary values into a function that acts t
values.
val compose_right_to_left :
(('b, 'index) t -> 'c) ->
(('a, 'index) t -> 'b) ->
('a, 'index) t ->
'c
Composing co-monadic functions using Co-Kleisli Arrow (from right to left).
Create a new t
, replacing all values of the given functor by given a value of 'a
.