summaryrefslogtreecommitdiff
path: root/stdlib/map.ml
diff options
context:
space:
mode:
authorJacques Garrigue <garrigue at math.nagoya-u.ac.jp>2001-09-02 13:42:19 +0000
committerJacques Garrigue <garrigue at math.nagoya-u.ac.jp>2001-09-02 13:42:19 +0000
commitfe2e11a8fb4dcf166ffb7f91e6eb8dd0f4402f25 (patch)
tree8dff8da7bfc88f25c78afe5340d78daa8c89587c /stdlib/map.ml
parent7e053c39de8693928b83038c1727f5d90228c39d (diff)
downloadocaml-strict_labels.tar.gz
remove doublonsstrict_labels
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/strict_labels@3687 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/map.ml')
-rw-r--r--stdlib/map.ml3
1 files changed, 0 insertions, 3 deletions
diff --git a/stdlib/map.ml b/stdlib/map.ml
index f1fdaa6cdf..634753feb0 100644
--- a/stdlib/map.ml
+++ b/stdlib/map.ml
@@ -24,7 +24,6 @@ module type S =
type +'a t
val empty: 'a t
val add: key -> 'a -> 'a t -> 'a t
- val add': key:key -> data:'a -> 'a t -> 'a t
val find: key -> 'a t -> 'a
val remove: key -> 'a t -> 'a t
val mem: key -> 'a t -> bool
@@ -94,8 +93,6 @@ module Make(Ord: OrderedType) = struct
else
bal l v d (add x data r)
- let add' ~key ~data t = add key data t
-
let rec find x = function
Empty ->
raise Not_found