mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
un-specify order of elements in CCMap.to_list
This commit is contained in:
parent
5ee25afad5
commit
264c9b608e
1 changed files with 2 additions and 1 deletions
|
|
@ -126,7 +126,8 @@ module type S = sig
|
||||||
@since 0.15 *)
|
@since 0.15 *)
|
||||||
|
|
||||||
val to_list : 'a t -> (key * 'a) list
|
val to_list : 'a t -> (key * 'a) list
|
||||||
(** [to_list m] builds a list of the bindings of the given map [m]. *)
|
(** [to_list m] builds a list of the bindings of the given map [m].
|
||||||
|
The order is unspecified. *)
|
||||||
|
|
||||||
val pp : ?pp_start:unit printer -> ?pp_stop:unit printer -> ?pp_arrow:unit printer ->
|
val pp : ?pp_start:unit printer -> ?pp_stop:unit printer -> ?pp_arrow:unit printer ->
|
||||||
?pp_sep:unit printer -> key printer -> 'a printer -> 'a t printer
|
?pp_sep:unit printer -> key printer -> 'a printer -> 'a t printer
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue