Module type Map.Accessors1
val invariants : _ t -> boolval is_empty : _ t -> boolval add : 'a t -> key:key -> data:'a -> [ `Ok of 'a t | `Duplicate ]val add_exn : 'a t -> key:key -> data:'a -> 'a tval set : 'a t -> key:key -> data:'a -> 'a tval add_multi : 'a list t -> key:key -> data:'a -> 'a list tval remove_multi : 'a list t -> key -> 'a list tval find_multi : 'a list t -> key -> 'a listval change : 'a t -> key -> f:('a option -> 'a option) -> 'a tval update : 'a t -> key -> f:('a option -> 'a) -> 'a tval find : 'a t -> key -> 'a optionval find_exn : 'a t -> key -> 'aval remove : 'a t -> key -> 'a tval mem : _ t -> key -> boolval iter_keys : _ t -> f:(key -> unit) -> unitval iter : 'a t -> f:('a -> unit) -> unitval iteri : 'a t -> f:(key:key -> data:'a -> unit) -> unitval iteri_until : 'a t -> f:(key:key -> data:'a -> Base__Map_intf.Continue_or_stop.t) -> Base__Map_intf.Finished_or_unfinished.tval iter2 : 'a t -> 'b t -> f:(key:key ->
data:[ `Left of 'a | `Right of 'b | `Both of 'a * 'b ] -> unit) -> unitval map : 'a t -> f:('a -> 'b) -> 'b tval mapi : 'a t -> f:(key:key -> data:'a -> 'b) -> 'b tval fold : 'a t -> init:'b -> f:(key:key -> data:'a -> 'b -> 'b) -> 'bval fold_right : 'a t -> init:'b -> f:(key:key -> data:'a -> 'b -> 'b) -> 'bval fold2 : 'a t -> 'b t -> init:'c -> f:(key:key ->
data:[ `Left of 'a | `Right of 'b | `Both of 'a * 'b ] -> 'c -> 'c) -> 'cval filter_keys : 'a t -> f:(key -> bool) -> 'a tval filter : 'a t -> f:('a -> bool) -> 'a tval filteri : 'a t -> f:(key:key -> data:'a -> bool) -> 'a tval filter_map : 'a t -> f:('a -> 'b option) -> 'b tval filter_mapi : 'a t -> f:(key:key -> data:'a -> 'b option) -> 'b tval partition_mapi : 'a t -> f:(key:key -> data:'a -> ('b, 'c) Either.t) -> 'b t * 'c tval partition_map : 'a t -> f:('a -> ('b, 'c) Either.t) -> 'b t * 'c tval partitioni_tf : 'a t -> f:(key:key -> data:'a -> bool) -> 'a t * 'a tval partition_tf : 'a t -> f:('a -> bool) -> 'a t * 'a tval compare_direct : ('a -> 'a -> int) -> 'a t -> 'a t -> intval equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> boolval keys : _ t -> key listval data : 'a t -> 'a listval to_alist : ?key_order:[ `Increasing | `Decreasing ] -> 'a t -> (key * 'a) listval merge : 'a t -> 'b t -> f:(key:key ->
[ `Left of 'a | `Right of 'b | `Both of 'a * 'b ] -> 'c option) -> 'c tval symmetric_diff : 'a t -> 'a t -> data_equal:('a -> 'a -> bool) ->
(key * [ `Left of 'a | `Right of 'a | `Unequal of 'a * 'a ]) Sequence.tval fold_symmetric_diff : 'a t -> 'a t -> data_equal:('a -> 'a -> bool) -> init:'c ->
f:('c -> (key * [ `Left of 'a | `Right of 'a | `Unequal of 'a * 'a ]) -> 'c) -> 'cval min_elt : 'a t -> (key * 'a) optionval min_elt_exn : 'a t -> key * 'aval max_elt : 'a t -> (key * 'a) optionval max_elt_exn : 'a t -> key * 'aval for_all : 'a t -> f:('a -> bool) -> boolval for_alli : 'a t -> f:(key:key -> data:'a -> bool) -> boolval exists : 'a t -> f:('a -> bool) -> boolval existsi : 'a t -> f:(key:key -> data:'a -> bool) -> boolval count : 'a t -> f:('a -> bool) -> intval counti : 'a t -> f:(key:key -> data:'a -> bool) -> intval split : 'a t -> key -> 'a t * (key * 'a) option * 'a tval append : lower_part:'a t -> upper_part:'a t ->
[ `Ok of 'a t | `Overlapping_key_ranges ]val fold_range_inclusive : 'a t -> min:key -> max:key -> init:'b -> f:(key:key -> data:'a ->
'b -> 'b) -> 'bval range_to_alist : 'a t -> min:key -> max:key -> (key * 'a) listval closest_key : 'a t -> [ `Greater_or_equal_to | `Greater_than | `Less_or_equal_to | `Less_than ] -> key -> (key * 'a) optionval nth : 'a t -> int -> (key * 'a) optionval nth_exn : 'a t -> int -> key * 'aval rank : _ t -> key -> int optionval to_tree : 'a t -> 'a treeval to_sequence : ?order:[ `Increasing_key | `Decreasing_key ] ->
?keys_greater_or_equal_to:key -> ?keys_less_or_equal_to:key -> 'a t -> (key * 'a) Sequence.tval binary_search : 'a t -> compare:(key:key -> data:'a -> '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 -> (key * 'a) optionval binary_search_segmented : 'a t -> segment_of:(key:key -> data:'a ->
[ `Left | `Right ]) -> [ `Last_on_left | `First_on_right ] -> (key * 'a) option