module Map: Core_mapmodule Tree:sig..end
type ('key, +'value, 'cmp) t
val invariants : ('a, 'b, 'c) t -> boolval comparator : ('a, 'b, 'cmp) t -> ('a, 'cmp) Comparator.tval empty : comparator:('a, 'cmp) Comparator.t -> ('a, 'b, 'cmp) tval singleton : comparator:('a, 'cmp) Comparator.t -> 'a -> 'b -> ('a, 'b, 'cmp) tval of_alist : comparator:('a, 'cmp) Comparator.t ->
('a * 'b) list -> [ `Duplicate_key of 'a | `Ok of ('a, 'b, 'cmp) t ]val of_alist_exn : comparator:('a, 'cmp) Comparator.t ->
('a * 'b) list -> ('a, 'b, 'cmp) tval of_alist_multi : comparator:('a, 'cmp) Comparator.t ->
('a * 'b) list -> ('a, 'b list, 'cmp) tval of_alist_fold : comparator:('a, 'cmp) Comparator.t ->
('a * 'b) list -> init:'c -> f:('c -> 'b -> 'c) -> ('a, 'c, 'cmp) tval to_tree : ('k, 'v, 'cmp) t -> ('k, 'v, 'cmp) Tree.tval of_tree : comparator:('k, 'cmp) Comparator.t ->
('k, 'v, 'cmp) Tree.t -> ('k, 'v, 'cmp) tval of_sorted_array : comparator:('a, 'cmp) Comparator.t ->
('a * 'b) array -> ('a, 'b, 'cmp) t Or_error.tval of_sorted_array_unchecked : comparator:('a, 'cmp) Comparator.t ->
('a * 'b) array -> ('a, 'b, 'cmp) tof_sorted_array except behavior is undefined when an Error would have been
returned.val is_empty : ('a, 'b, 'c) t -> boolval length : ('a, 'b, 'c) t -> intlength mapmap.val add : ('k, 'v, 'cmp) t -> key:'k -> data:'v -> ('k, 'v, 'cmp) tval add_multi : ('k, 'v list, 'cmp) t ->
key:'k -> data:'v -> ('k, 'v list, 'cmp) tval change : ('k, 'v, 'cmp) t ->
'k -> ('v option -> 'v option) -> ('k, 'v, 'cmp) tchange map key f updates the given map by changing the value stored under key
according to f. Thus, for example, one might write:
change m k (function None -> Some 0 | Some x -> Some (x + 1))
to produce a new map where the integer stored under key k is incremented by one
(treating an unknown key as zero).
val find : ('k, 'v, 'cmp) t -> 'k -> 'v optionNot_found if none such existsval find_exn : ('k, 'v, 'cmp) t -> 'k -> 'vval remove : ('k, 'v, 'cmp) t -> 'k -> ('k, 'v, 'cmp) tval mem : ('k, 'a, 'cmp) t -> 'k -> boolmem map key tests whether map contains a binding for keyval iter : ('k, 'v, 'a) t -> f:(key:'k -> data:'v -> unit) -> unitval iter2 : ('k, 'v1, 'cmp) t ->
('k, 'v2, 'cmp) t ->
f:(key:'k ->
data:[ `Both of 'v1 * 'v2 | `Left of 'v1 | `Right of 'v2 ] -> unit) ->
unit(0, a); (1, a) and (1, b); (2, b), f will be called with (0, `Left a); (1,
`Both (a, b)); (2, `Right b)val map : ('k, 'v1, 'cmp) t -> f:('v1 -> 'v2) -> ('k, 'v2, 'cmp) tval mapi : ('k, 'v1, 'cmp) t ->
f:(key:'k -> data:'v1 -> 'v2) -> ('k, 'v2, 'cmp) tmap, but function takes both key and data as argumentsval fold : ('k, 'v, 'b) t -> init:'a -> f:(key:'k -> data:'v -> 'a -> 'a) -> 'aval fold_right : ('k, 'v, 'b) t -> init:'a -> f:(key:'k -> data:'v -> 'a -> 'a) -> 'aval filter : ('k, 'v, 'cmp) t ->
f:(key:'k -> data:'v -> bool) -> ('k, 'v, 'cmp) tval filter_map : ('k, 'v1, 'cmp) t ->
f:('v1 -> 'v2 option) -> ('k, 'v2, 'cmp) tval filter_mapi : ('k, 'v1, 'cmp) t ->
f:(key:'k -> data:'v1 -> 'v2 option) -> ('k, 'v2, 'cmp) tfilter_map, but function takes both key and data as argumentsval compare_direct : ('v -> 'v -> int) ->
('k, 'v, 'cmp) t -> ('k, 'v, 'cmp) t -> intval equal : ('v -> 'v -> bool) ->
('k, 'v, 'cmp) t -> ('k, 'v, 'cmp) t -> boolequal cmp m1 m2 tests whether the maps m1 and m2 are equal, that is, contain
equal keys and associate them with equal data. cmp is the equality predicate used
to compare the data associated with the keys.val keys : ('k, 'a, 'b) t -> 'k listval data : ('a, 'v, 'b) t -> 'v listval to_alist : ('k, 'v, 'a) t -> ('k * 'v) listval validate : name:('k -> string) ->
'v Validate.check -> ('k, 'v, 'a) t Validate.checkval merge : ('k, 'v1, 'cmp) t ->
('k, 'v2, 'cmp) t ->
f:(key:'k ->
[ `Both of 'v1 * 'v2 | `Left of 'v1 | `Right of 'v2 ] -> 'v3 option) ->
('k, 'v3, 'cmp) tval symmetric_diff : ('k, 'v, 'cmp) t ->
('k, 'v, 'cmp) t ->
data_equal:('v -> 'v -> bool) ->
('k * [ `Left of 'v | `Right of 'v | `Unequal of 'v * 'v ]) listsymmetric_diff t1 t2 ~data_equal returns a list of changes between t1 and t2.
It is intended to be efficient in the case where t1 and t2 share a large amount of
structure.val min_elt : ('k, 'v, 'a) t -> ('k * 'v) optionmin_elt map(key, data) pair corresponding to the minimum key in
map, None if empty.val min_elt_exn : ('k, 'v, 'a) t -> 'k * 'vval max_elt : ('k, 'v, 'a) t -> ('k * 'v) optionmax_elt map(key, data) pair corresponding to the maximum key in
map, and None if map is empty.val max_elt_exn : ('k, 'v, 'a) t -> 'k * 'vval for_all : ('k, 'v, 'a) t -> f:('v -> bool) -> boolval exists : ('k, 'v, 'a) t -> f:('v -> bool) -> boolval fold_range_inclusive : ('k, 'v, 'cmp) t ->
min:'k -> max:'k -> init:'a -> f:(key:'k -> data:'v -> 'a -> 'a) -> 'afold_range_inclusive t ~min ~max ~init ~f
folds f (with initial value ~init) over all keys (and their associated values)
that are in the range min, max (inclusive).val range_to_alist : ('k, 'v, 'cmp) t -> min:'k -> max:'k -> ('k * 'v) listrange_to_alist t ~min ~max returns an associative list of the elements whose
keys lie in min, max (inclusive), with the smallest key being at the head of the
list.val prev_key : ('k, 'v, 'cmp) t -> 'k -> ('k * 'v) optionprev_key t k returns the largest (key, value) pair in t with key less than kval next_key : ('k, 'v, 'cmp) t -> 'k -> ('k * 'v) optionnext_key t k returns the smallest (key, value) pair in t with key greater than kval rank : ('k, 'v, 'cmp) t -> 'k -> int optionrank t k if k is in t, returns the number of keys strictly less than k in t,
otherwise Nonemodule Poly:sig..endwith type ('a, 'b, 'c) map = ('a, 'b, 'c) t
module type Key = Core_map_intf.Keymodule type Key_binable = Core_map_intf.Key_binablemodule type S =Swith type ('a, 'b, 'c) map := ('a, 'b, 'c) twith type ('a, 'b, 'c) tree := ('a, 'b, 'c) Tree.t
module type S_binable =S_binablewith type ('a, 'b, 'c) map := ('a, 'b, 'c) twith type ('a, 'b, 'c) tree := ('a, 'b, 'c) Tree.t
module Make:
module Make_using_comparator:
module Make_binable:
module Make_binable_using_comparator:functor (Key:Comparator.S_binable) ->S_binablewith type Key.t = Key.twith type Key.comparator = Key.comparator