summaryrefslogtreecommitdiffstats
path: root/stdlib/queue.mli
diff options
context:
space:
mode:
authorJacques Garrigue <garrigue at math.nagoya-u.ac.jp>1999-11-30 16:07:38 +0000
committerJacques Garrigue <garrigue at math.nagoya-u.ac.jp>1999-11-30 16:07:38 +0000
commit296fc0547052da47bf0e983cab1ce173fa1e8882 (patch)
tree27f621f1e06d4f6493c88993969c4638861390d7 /stdlib/queue.mli
parentca0b21c5adbe660a52e5a9dfe1dda16985fe5f7c (diff)
Merge olabl branch
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2651 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/queue.mli')
-rw-r--r--stdlib/queue.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/queue.mli b/stdlib/queue.mli
index 867915bd0..c569ae7dc 100644
--- a/stdlib/queue.mli
+++ b/stdlib/queue.mli
@@ -36,7 +36,7 @@ val clear : 'a t -> unit
(* Discard all elements from a queue. *)
val length: 'a t -> int
(* Return the number of elements in a queue. *)
-val iter: ('a -> unit) -> 'a t -> unit
+val iter: fun:('a -> unit) -> 'a t -> unit
(* [iter f q] applies [f] in turn to all elements of [q],
from the least recently entered to the most recently entered.
The queue itself is unchanged. *)