summaryrefslogtreecommitdiff
path: root/lib/gset.mli
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gset.mli')
-rw-r--r--lib/gset.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gset.mli b/lib/gset.mli
index 0f14368f..5c794381 100644
--- a/lib/gset.mli
+++ b/lib/gset.mli
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(*i $Id: gset.mli 5920 2004-07-16 20:01:26Z herbelin $ i*)
+(*i $Id: gset.mli 10840 2008-04-23 21:29:34Z herbelin $ i*)
(* Sets using the generic comparison function of ocaml. Same interface as
the module [Set] from the ocaml standard library. *)
@@ -26,7 +26,7 @@ val compare : 'a t -> 'a t -> int
val equal : 'a t -> 'a t -> bool
val subset : 'a t -> 'a t -> bool
val iter : ('a -> unit) -> 'a t -> unit
-val fold : ('a -> 'a -> 'a) -> 'a t -> 'a -> 'a
+val fold : ('a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val cardinal : 'a t -> int
val elements : 'a t -> 'a list
val min_elt : 'a t -> 'a