mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
deprecation incoming for CCHashtbl.{Counter,Default} tables
This commit is contained in:
parent
708a92d027
commit
12fe3fdde3
1 changed files with 6 additions and 2 deletions
|
|
@ -121,7 +121,9 @@ module Make(X : Hashtbl.HashedType) :
|
|||
|
||||
(** {2 Default Table}
|
||||
|
||||
A table with a default element for keys that were never added. *)
|
||||
A table with a default element for keys that were never added.
|
||||
|
||||
@deprecated since NEXT_RELEASE, should be merged into [Make] itself *)
|
||||
|
||||
module type DEFAULT = sig
|
||||
type key
|
||||
|
|
@ -155,7 +157,9 @@ end
|
|||
|
||||
module MakeDefault(X : Hashtbl.HashedType) : DEFAULT with type key = X.t
|
||||
|
||||
(** {2 Count occurrences using a Hashtbl} *)
|
||||
(** {2 Count occurrences using a Hashtbl}
|
||||
|
||||
@deprecated since NEXT_RELEASE, should be merged into [Make] itself *)
|
||||
|
||||
module type COUNTER = sig
|
||||
type elt
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue