Parameters
Signature
include sig ... end
Sourceval find_first_opt : (key -> bool) -> 'a t -> (key * 'a) option Sourceval find_last_opt : (key -> bool) -> 'a t -> (key * 'a) option Sourceval modify_def : 'a -> key -> ('a -> 'a) -> 'a t -> 'a t Sourceval modify_opt : key -> ('a option -> 'a option) -> 'a t -> 'a t Sourceval iter : (key -> 'a -> unit) -> 'a t -> unit Sourceval map : ('a -> 'b) -> 'a t -> 'b t Sourceval fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b Sourceval filterv : ('a -> bool) -> 'a t -> 'a t Sourceval filter_map : (key -> 'a -> 'b option) -> 'a t -> 'b t Sourceval compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int Sourceval equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool Sourceval min_binding_opt : 'a t -> (key * 'a) option Sourceval max_binding_opt : 'a t -> (key * 'a) option Sourceval partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t Sourceval for_all : (key -> 'a -> bool) -> 'a t -> bool Sourceval exists : (key -> 'a -> bool) -> 'a t -> bool 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 add_to_list : key -> 'a -> 'a list t -> 'a list t Sourceval update_stdlib : key -> ('a option -> 'a option) -> 'a t -> 'a t