Travesty_base_exts.Tuple2SourceAn 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
Type of 2-tuples.
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) tinclude Travesty.Bi_mappable.Generic
with type ('l, 'r) t := ('l, 'r) t
and type 'l left := 'l
and type 'r right := 'rinclude Travesty.Bi_mappable.Basic_generic
with type ('l, 'r) t := ('l, 'r) t
with type 'l left := 'l
with type 'r right := 'rinclude Travesty.Types_intf.Bi_generic
with type ('l, 'r) t := ('l, 'r) t
with type 'l left := 'l
with type 'r right := 'rmap_left c ~f maps f over the left type of c only.