val find_opt : key -> 'a t -> 'a optionval update : key -> ('a option -> 'a option) -> 'a t -> 'a tval for_all : (key -> 'a -> bool) -> 'a t -> boolval merge :
(key -> 'a option -> 'b option -> 'c option) ->
'a t ->
'b t ->
'c tval to_seq : 'a t -> (key * 'a) Stdlib.Seq.t