junk signature removed

This commit is contained in:
Simon Cruanes 2013-02-06 14:54:15 +01:00
parent f0c3d399bc
commit 301205fafd

View file

@ -151,9 +151,6 @@ val of_set : (module Set.S with type elt = 'a and type t = 'b) -> 'b -> 'a t
val to_set : (module Set.S with type elt = 'a and type t = 'b) -> 'a t -> 'b
(** Convert the sequence to a set, given the proper set module *)
val of_map : (module Map.S with type key = 'a and type t = 'b) -> 'b -> ('a * 'c) t
(** Convert the Map to the sequence of its key/values *)
(** Iterate on maps. The functor must be instantiated with a map type *)
module Map(M : Map.S) :
sig