Closed.Over_profunctor_via_closed
module P : Preface_specs.Profunctor.CORE
module C : Preface_specs.Closed.WITH_CLOSED with type ('a, 'b) t = ('a, 'b) P.t
type ('a, 'b) t = ('a, 'b) C.t
The type held by the Closed Profunctor.
Closed Profunctor
val dimap : ('a -> 'b) -> ('c -> 'd) -> ('b, 'c) t -> ('a, 'd) t
val contramap_fst : ('a -> 'b) -> ('b, 'c) t -> ('a, 'c) t
Contramapping over the first argument.
val map_snd : ('b -> 'c) -> ('a, 'b) t -> ('a, 'c) t
Mapping over the second argument.
val closed : ('a, 'b) t -> ('c -> 'a, 'c -> 'b) t
Act on the input type of a function.
val curry : ('a * 'b, 'c) t -> ('a, 'b -> 'c) t
Transform an uncurried function into a curried one.