AssertionName.Mapexception Not_found of keyval values : 'a t -> 'a listval format_keys :
?pp_sep:(Stdlib.Format.formatter -> unit -> unit) ->
Stdlib.Format.formatter ->
'a t ->
unitval format_values :
?pp_sep:(Stdlib.Format.formatter -> unit -> unit) ->
(Stdlib.Format.formatter -> 'a -> unit) ->
Stdlib.Format.formatter ->
'a t ->
unitval format_bindings :
?pp_sep:(Stdlib.Format.formatter -> unit -> unit) ->
(Stdlib.Format.formatter -> (Stdlib.Format.formatter -> unit) -> 'a -> unit) ->
Stdlib.Format.formatter ->
'a t ->
unitFormats the bindings of t in order. The user-supplied format function is provided with a formatter for keys (can be used with "%t") and the corresponding value.
val format_bindings_i :
?pp_sep:(Stdlib.Format.formatter -> unit -> unit) ->
(Stdlib.Format.formatter ->
(Stdlib.Format.formatter -> unit) ->
key ->
'a ->
unit) ->
Stdlib.Format.formatter ->
'a t ->
unitLike format_bindings, but the key is also supplied to the printing function
val format :
?pp_sep:(Stdlib.Format.formatter -> unit -> unit) ->
?pp_bind:(Stdlib.Format.formatter -> unit -> unit) ->
(Stdlib.Format.formatter -> 'a -> unit) ->
Stdlib.Format.formatter ->
'a t ->
unitFormats all bindings of the map in order using the given separator (default "; ") and binding indicator (default " = ").