= 768" x-on:close-sidebar="sidebar=window.innerWidth >= 768 && true">
package travesty
-
travesty
-
-
travesty.containers
-
-
travesty.core_kernel_exts
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
An expanded version of Core_kernel
's pair (2-tuple) module.
This module expands and merges both Core_kernel.Tuple2
and Base_exts.Tuple2.
This expanded overlay contains a bi-mappable implementation for pairs
Pairs are trivially bi-mappable; the left type is fst
, and the right type is snd
. For example:
bi_map ("foo", 27) ~left:String.capitalize ~right:Int.neg
(* returns: ("Foo", -27) *)
include Travesty.Bi_mappable.S2 with type ('l, 'r) t := ('l, 'r) t
include Travesty.Bi_mappable.Generic
with type ('l, 'r) t := ('l, 'r) t
and type 'l left := 'l
and type 'r right := 'r
include Travesty.Bi_mappable.Basic_generic
with type ('l, 'r) t := ('l, 'r) t
with type 'l left := 'l
with type 'r right := 'r
include Travesty.Types_intf.Bi_generic
with type ('l, 'r) t := ('l, 'r) t
with type 'l left := 'l
with type 'r right := 'r
map_left c ~f
maps f
over the left type of c
only.