type ('a, 'b, 'c) map = ('a, 'b, 'c) t
module Tree : sig ... endtype ('a, +'b) t = ('a, 'b, Comparator.Poly.comparator_witness) map
include Bin_prot.Binable.S2 with type ('a, +'b) t := ('a, 'b) t
val bin_shape_t : Bin_prot.Shape.t -> Bin_prot.Shape.t -> Bin_prot.Shape.tval bin_size_t : ('a, 'b, ('a, 'b) t) Bin_prot.Size.sizer2val bin_write_t : ('a, 'b, ('a, 'b) t) Bin_prot.Write.writer2val bin_read_t : ('a, 'b, ('a, 'b) t) Bin_prot.Read.reader2val __bin_read_t__ : ('a, 'b, int -> ('a, 'b) t) Bin_prot.Read.reader2val bin_writer_t : ('a, 'b, ('a, 'b) t) Bin_prot.Type_class.S2.writerval bin_reader_t : ('a, 'b, ('a, 'b) t) Bin_prot.Type_class.S2.readerval bin_t : ('a, 'b, ('a, 'b) t) Bin_prot.Type_class.S2.t
val compare : ('a -> 'a -> Base.Int.t) -> ('b -> 'b -> Base.Int.t) -> ('a, 'b) t -> ('a, 'b) t -> Base.Int.t
include Map_intf.Creators_and_accessors2 with type ('a, 'b) t := ('a, 'b) t with type ('a, 'b) tree := ('a, 'b) Tree.t
include Map_intf.Creators2 with type ('a, 'b) tree := ('a, 'b) Tree.t and type ('a, 'b) t := ('a, 'b) t
include Map_intf.Map.Creators2 with type ('a, 'b) t := ('a, 'b) t and type ('a, 'b) tree := ('a, 'b) Tree.t
type comparator_witness
val empty : ('a, 'b) tval singleton : 'a -> 'b -> ('a, 'b) tval of_alist : ('a * 'b) list -> [ `Ok of ('a, 'b) t | `Duplicate_key of 'a ]val of_alist_or_error : ('a * 'b) list -> ('a, 'b) t Base.Or_error.tval of_alist_exn : ('a * 'b) list -> ('a, 'b) tval of_alist_multi : ('a * 'b) list -> ('a, 'b) tval of_alist_fold : ('a * 'b) list -> init:'c -> f:('c -> 'b -> 'c) -> ('a, 'b) tval of_alist_reduce : ('a * 'b) list -> f:('b -> 'b -> 'b) -> ('a, 'b) tval of_sorted_array : ('a * 'b) array -> ('a, 'b) t Base.Or_error.tval of_sorted_array_unchecked : ('a * 'b) array -> ('a, 'b) tval of_increasing_iterator_unchecked : len:int -> f:(int -> 'a * 'b) -> ('a, 'b) tval of_increasing_sequence : ('a * 'b) Base.Sequence.t -> ('a, 'b) t Base.Or_error.tval of_sequence : ('a * 'b) Base.Sequence.t -> [ `Ok of ('a, 'b) t | `Duplicate_key of 'a ]val of_sequence_or_error : ('a * 'b) Base.Sequence.t -> ('a, 'b) t Base.Or_error.tval of_sequence_exn : ('a * 'b) Base.Sequence.t -> ('a, 'b) tval of_sequence_multi : ('a * 'b) Base.Sequence.t -> ('a, 'b) tval of_sequence_fold : ('a * 'b) Base.Sequence.t -> init:'c -> f:('c -> 'b -> 'c) -> ('a, 'b) tval of_sequence_reduce : ('a * 'b) Base.Sequence.t -> f:('b -> 'b -> 'b) -> ('a, 'b) tval of_iteri : iteri:(f:(key:'a -> data:'b -> unit) -> unit) -> [ `Ok of ('a, 'b) t | `Duplicate_key of 'a ]val of_tree : ('a, 'b) Tree.t -> ('a, 'b) t
val of_hashtbl_exn : ('a, 'b) Hashtbl.t -> ('a, 'b) tval of_key_set : ('a, comparator_witness) Base.Set.t -> f:('a -> 'b) -> ('a, 'b) tval quickcheck_generator : 'a Quickcheck.Generator.t -> 'b Quickcheck.Generator.t -> ('a, 'b) t Quickcheck.Generator.t
include Map_intf.Accessors2 with type ('a, 'b) t := ('a, 'b) t with type ('a, 'b) tree := ('a, 'b) Tree.t with type comparator_witness := comparator_witness
include Map_intf.Map.Accessors2 with type comparator_witness := comparator_witness and type ('a, 'b) tree := ('a, 'b) Tree.t and type ('a, 'b) t := ('a, 'b) t
val invariants : ('a, 'b) t -> boolval is_empty : ('a, 'b) t -> boolval length : ('a, 'b) t -> intval add : ('a, 'b) t -> key:'a -> data:'b -> [ `Ok of ('a, 'b) t | `Duplicate ]val add_exn : ('a, 'b) t -> key:'a -> data:'b -> ('a, 'b) tval set : ('a, 'b) t -> key:'a -> data:'b -> ('a, 'b) tval add_multi : ('a, 'b) t -> key:'a -> data:'b -> ('a, 'b) tval remove_multi : ('a, 'b) t -> 'a -> ('a, 'b) tval find_multi : ('a, 'b) t -> 'a -> 'b listval change : ('a, 'b) t -> 'a -> f:('b option -> 'b option) -> ('a, 'b) tval update : ('a, 'b) t -> 'a -> f:('b option -> 'b) -> ('a, 'b) tval find : ('a, 'b) t -> 'a -> 'b optionval find_exn : ('a, 'b) t -> 'a -> 'bval remove : ('a, 'b) t -> 'a -> ('a, 'b) tval mem : ('a, 'b) t -> 'a -> boolval iter_keys : ('a, 'b) t -> f:('a -> unit) -> unitval iter : ('a, 'b) t -> f:('b -> unit) -> unitval iteri : ('a, 'b) t -> f:(key:'a -> data:'b -> unit) -> unitval iteri_until : ('a, 'b) t -> f:(key:'a -> data:'b -> Base__Map_intf.Continue_or_stop.t) -> Base__Map_intf.Finished_or_unfinished.tval iter2 : ('a, 'b) t -> ('a, 'b) t -> f:(key:'a -> data:[ `Left of 'b | `Right of 'c | `Both of 'b * 'c ] -> unit) -> unitval map : ('a, 'b) t -> f:('b -> 'c) -> ('a, 'b) tval mapi : ('a, 'b) t -> f:(key:'a -> data:'b -> 'c) -> ('a, 'b) tval fold : ('a, 'b) t -> init:'c -> f:(key:'a -> data:'b -> 'c -> 'c) -> 'cval fold_right : ('a, 'b) t -> init:'c -> f:(key:'a -> data:'b -> 'c -> 'c) -> 'cval fold2 : ('a, 'b) t -> ('a, 'b) t -> init:'d -> f:(key:'a -> data:[ `Left of 'b | `Right of 'c | `Both of 'b * 'c ] -> 'd -> 'd) -> 'dval filter_keys : ('a, 'b) t -> f:('a -> bool) -> ('a, 'b) tval filter : ('a, 'b) t -> f:('b -> bool) -> ('a, 'b) tval filteri : ('a, 'b) t -> f:(key:'a -> data:'b -> bool) -> ('a, 'b) tval filter_map : ('a, 'b) t -> f:('b -> 'c option) -> ('a, 'b) tval filter_mapi : ('a, 'b) t -> f:(key:'a -> data:'b -> 'c option) -> ('a, 'b) tval partition_mapi : ('a, 'b) t -> f:(key:'a -> data:'b -> ('c, 'd) Base.Either.t) -> ('a, 'b) t * ('a, 'b) tval partition_map : ('a, 'b) t -> f:('b -> ('c, 'd) Base.Either.t) -> ('a, 'b) t * ('a, 'b) tval partitioni_tf : ('a, 'b) t -> f:(key:'a -> data:'b -> bool) -> ('a, 'b) t * ('a, 'b) tval partition_tf : ('a, 'b) t -> f:('b -> bool) -> ('a, 'b) t * ('a, 'b) tval combine_errors : ('a, 'b) t -> ('a, 'b) t Base.Or_error.tval compare_direct : ('b -> 'b -> int) -> ('a, 'b) t -> ('a, 'b) t -> intval equal : ('b -> 'b -> bool) -> ('a, 'b) t -> ('a, 'b) t -> boolval keys : ('a, 'b) t -> 'a listval data : ('a, 'b) t -> 'b listval to_alist : ?key_order:[ `Increasing | `Decreasing ] -> ('a, 'b) t -> ('a * 'b) listval validate : name:('a -> string) -> 'b Base.Validate.check -> ('a, 'b) t Base.Validate.checkval validatei : name:('a -> string) -> ('a * 'b) Base.Validate.check -> ('a, 'b) t Base.Validate.checkval merge : ('a, 'b) t -> ('a, 'b) t -> f:(key:'a -> [ `Left of 'b | `Right of 'c | `Both of 'b * 'c ] -> 'd option) -> ('a, 'b) tval symmetric_diff : ('a, 'b) t -> ('a, 'b) t -> data_equal:('b -> 'b -> bool) -> ('a * [ `Left of 'b | `Right of 'b | `Unequal of 'b * 'b ]) Base.Sequence.tval fold_symmetric_diff : ('a, 'b) t -> ('a, 'b) t -> data_equal:('b -> 'b -> bool) -> init:'c -> f:('c -> ('a * [ `Left of 'b | `Right of 'b | `Unequal of 'b * 'b ]) -> 'c) -> 'cval min_elt : ('a, 'b) t -> ('a * 'b) optionval min_elt_exn : ('a, 'b) t -> 'a * 'bval max_elt : ('a, 'b) t -> ('a * 'b) optionval max_elt_exn : ('a, 'b) t -> 'a * 'bval for_all : ('a, 'b) t -> f:('b -> bool) -> boolval for_alli : ('a, 'b) t -> f:(key:'a -> data:'b -> bool) -> boolval exists : ('a, 'b) t -> f:('b -> bool) -> boolval existsi : ('a, 'b) t -> f:(key:'a -> data:'b -> bool) -> boolval count : ('a, 'b) t -> f:('b -> bool) -> intval counti : ('a, 'b) t -> f:(key:'a -> data:'b -> bool) -> intval split : ('a, 'b) t -> 'a -> ('a, 'b) t * ('a * 'b) option * ('a, 'b) tval append : lower_part:('a, 'b) t -> upper_part:('a, 'b) t -> [ `Ok of ('a, 'b) t | `Overlapping_key_ranges ]val subrange : ('a, 'b) t -> lower_bound:'a Base.Maybe_bound.t -> upper_bound:'a Base.Maybe_bound.t -> ('a, 'b) tval fold_range_inclusive : ('a, 'b) t -> min:'a -> max:'a -> init:'c -> f:(key:'a -> data:'b -> 'c -> 'c) -> 'cval range_to_alist : ('a, 'b) t -> min:'a -> max:'a -> ('a * 'b) listval closest_key : ('a, 'b) t -> [ `Greater_or_equal_to | `Greater_than | `Less_or_equal_to | `Less_than ] -> 'a -> ('a * 'b) optionval nth : ('a, 'b) t -> int -> ('a * 'b) optionval nth_exn : ('a, 'b) t -> int -> 'a * 'bval rank : ('a, 'b) t -> 'a -> int optionval to_tree : ('a, 'b) t -> ('a, 'b) Tree.tval to_sequence : ?order:[ `Increasing_key | `Decreasing_key ] -> ?keys_greater_or_equal_to:'a -> ?keys_less_or_equal_to:'a -> ('a, 'b) t -> ('a * 'b) Base.Sequence.tval binary_search : ('a, 'b) t -> compare:(key:'k -> data:'v -> 'key -> int) -> [ `Last_strictly_less_than | `Last_less_than_or_equal_to | `Last_equal_to | `First_equal_to | `First_greater_than_or_equal_to | `First_strictly_greater_than ] -> 'key -> ('k * 'v) optionval binary_search_segmented : ('a, 'b) t -> segment_of:(key:'k -> data:'v -> [ `Left | `Right ]) -> [ `Last_on_left | `First_on_right ] -> ('k * 'v) option
val key_set : ('a, 'b) t -> ('k, comparator_witness) Base.Set.tval quickcheck_observer : 'k Quickcheck.Observer.t -> 'v Quickcheck.Observer.t -> ('a, 'b) t Quickcheck.Observer.tval quickcheck_shrinker : 'k Quickcheck.Shrinker.t -> 'v Quickcheck.Shrinker.t -> ('a, 'b) t Quickcheck.Shrinker.t