diff options
Diffstat (limited to 'stdlib/map.ml')
-rw-r--r-- | stdlib/map.ml | 3 |
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 |