Skip to content

Commit

Permalink
forgot Hashtbl.copy
Browse files Browse the repository at this point in the history
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4107 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
  • Loading branch information
Jacques Garrigue committed Dec 5, 2001
1 parent c87c9ef commit caa59d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stdlib/moreLabels.mli
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ module Hashtbl : sig
val create : int -> ('a, 'b) t
val clear : ('a, 'b) t -> unit
val add : ('a, 'b) t -> key:'a -> data:'b -> unit
val copy : ('a, 'b) t -> ('a, 'b) t
val find : ('a, 'b) t -> 'a -> 'b
val find_all : ('a, 'b) t -> 'a -> 'b list
val mem : ('a, 'b) t -> 'a -> bool
Expand All @@ -43,7 +44,7 @@ module Hashtbl : sig
and 'a t
val create : int -> 'a t
val clear : 'a t -> unit
val copy: 'a t -> 'a t
val copy : 'a t -> 'a t
val add : 'a t -> key:key -> data:'a -> unit
val remove : 'a t -> key -> unit
val find : 'a t -> key -> 'a
Expand Down

0 comments on commit caa59d9

Please sign in to comment.