Travesty_base_exts.AlistSourceAssociative-list extensions.
Defined to let this module be used directly in chaining operations etc.
Associative lists are bi-mappable; the left type is keys, and the right type is values. For example:
bi_map [("foo", 27); ("bar", 53); ("baz", 99)]
~left:String.capitalize ~right:Int.neg
(* returns: [("Foo", -27); ("Bar", -53); ("Baz", -99)] *)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.