Module MapDomain.PatriciaMapSource
Parameters
Signature
Sourceval idempotent_union : ('a -> 'a -> 'a) -> 'a t -> 'a t -> 'a t Sourceval nonidempotent_union : ('a -> 'a -> 'a) -> 'a t -> 'a t -> 'a t Sourceval idempotent_inter : ('a -> 'a -> 'a) -> 'a t -> 'a t -> 'a t Sourceval nonidempotent_inter : ('a -> 'a -> 'a) -> 'a t -> 'a t -> 'a t Sourceval idempotent_inter_filter : ('a -> 'a -> 'a option) -> 'a t -> 'a t -> 'a t Sourceval nonidempotent_inter_filter :
('a -> 'a -> 'a option) ->
'a t ->
'a t ->
'a t Sourceval difference : ('a -> 'a -> 'a option) -> 'a t -> 'a t -> 'a t Sourceval reflexive_compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int Sourceval reflexive_equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool Sourceval reflexive_subset_domain_for_all2 :
('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 map : ('a -> 'a) -> 'a t -> 'a t