Parameters
Signature
Sourceval update : key -> ('a option -> 'a option) -> 'a t -> 'a t Sourceval adjust : key -> ('a option -> 'a) -> 'a t -> 'a t Sourceval merge :
(key -> 'a option -> 'b option -> 'c option) ->
'a t ->
'b t ->
'c t Sourceval union : (key -> 'a -> 'a -> 'a option) -> 'a t -> 'a t -> 'a t Sourceval compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int Sourceval equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool Sourceval iter : (key -> 'a -> unit) -> 'a t -> unit Sourceval fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b Sourceval for_all : (key -> 'a -> bool) -> 'a t -> bool Sourceval exists : (key -> 'a -> bool) -> 'a t -> bool Sourceval partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t Sourceval min_binding_opt : 'a t -> (key * 'a) option Sourceval max_binding_opt : 'a t -> (key * 'a) option Sourceval ident_map_key : ?combine:('a -> 'a -> 'a) -> (key -> key) -> 'a t -> 'a t Sourceval map : ('a -> 'b) -> 'a t -> 'b t Sourceval of_increasing_iterator_unchecked : (unit -> key * 'a) -> int -> 'a t Sourceval of_sorted_array_unchecked : (key * 'a) array -> 'a t