deprecation incoming for CCHashtbl.{Counter,Default} tables

This commit is contained in:
Simon Cruanes 2016-02-18 12:28:19 +01:00
parent 708a92d027
commit 12fe3fdde3

View file

@ -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