1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
2001-12-07 05:41:02 -08:00
|
|
|
(* under the terms of the GNU Library General Public License, with *)
|
|
|
|
(* the special exception on linking described in file ../LICENSE. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
2001-10-26 15:38:48 -07:00
|
|
|
(** First-in first-out queues.
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2001-10-26 15:38:48 -07:00
|
|
|
This module implements queues (FIFOs), with in-place modification.
|
|
|
|
*)
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
type 'a t
|
2001-12-03 14:16:03 -08:00
|
|
|
(** The type of queues containing elements of type ['a]. *)
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2001-10-26 15:38:48 -07:00
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
exception Empty
|
2001-12-03 14:16:03 -08:00
|
|
|
(** Raised when {!Queue.take} or {!Queue.peek} is applied to an empty queue. *)
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2001-10-26 15:38:48 -07:00
|
|
|
|
2001-12-03 14:16:03 -08:00
|
|
|
val create : unit -> 'a t
|
2001-10-26 15:38:48 -07:00
|
|
|
(** Return a new queue, initially empty. *)
|
|
|
|
|
2001-12-03 14:16:03 -08:00
|
|
|
val add : 'a -> 'a t -> unit
|
2001-10-26 15:38:48 -07:00
|
|
|
(** [add x q] adds the element [x] at the end of the queue [q]. *)
|
|
|
|
|
2002-05-06 05:11:08 -07:00
|
|
|
val push : 'a -> 'a t -> unit
|
|
|
|
(** [push] is a synonym for [add]. *)
|
|
|
|
|
2001-12-03 14:16:03 -08:00
|
|
|
val take : 'a t -> 'a
|
2001-10-26 15:38:48 -07:00
|
|
|
(** [take q] removes and returns the first element in queue [q],
|
|
|
|
or raises [Empty] if the queue is empty. *)
|
|
|
|
|
2002-05-06 05:11:08 -07:00
|
|
|
val pop : 'a t -> 'a
|
|
|
|
(** [pop] is a synonym for [take]. *)
|
|
|
|
|
2001-12-03 14:16:03 -08:00
|
|
|
val peek : 'a t -> 'a
|
2001-10-26 15:38:48 -07:00
|
|
|
(** [peek q] returns the first element in queue [q], without removing
|
|
|
|
it from the queue, or raises [Empty] if the queue is empty. *)
|
|
|
|
|
2002-05-06 05:11:08 -07:00
|
|
|
val top : 'a t -> 'a
|
|
|
|
(** [top] is a synonym for [peek]. *)
|
|
|
|
|
2001-12-03 14:16:03 -08:00
|
|
|
val clear : 'a t -> unit
|
2001-10-26 15:38:48 -07:00
|
|
|
(** Discard all elements from a queue. *)
|
|
|
|
|
2002-05-06 05:11:08 -07:00
|
|
|
val copy : 'a t -> 'a t
|
|
|
|
(** Return a copy of the given queue. *)
|
|
|
|
|
2002-06-27 01:48:26 -07:00
|
|
|
val is_empty : 'a t -> bool
|
|
|
|
(** Return [true] if the given queue is empty, [false] otherwise. *)
|
|
|
|
|
2001-12-03 14:16:03 -08:00
|
|
|
val length : 'a t -> int
|
2001-10-26 15:38:48 -07:00
|
|
|
(** Return the number of elements in a queue. *)
|
|
|
|
|
2001-12-03 14:16:03 -08:00
|
|
|
val iter : ('a -> unit) -> 'a t -> unit
|
2001-10-26 15:38:48 -07:00
|
|
|
(** [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. *)
|
|
|
|
|
2002-05-06 05:11:08 -07:00
|
|
|
val fold : ('b -> 'a -> 'b) -> 'b -> 'a t -> 'b
|
|
|
|
(** [fold f accu q] is equivalent to [List.fold_left f accu l],
|
|
|
|
where [l] is the list of [q]'s elements. The queue remains
|
|
|
|
unchanged. *)
|
|
|
|
|
|
|
|
val transfer : 'a t -> 'a t -> unit
|
|
|
|
(** [transfer q1 q2] adds all of [q1]'s elements at the end of
|
|
|
|
the queue [q2], then clears [q1]. It is equivalent to the
|
|
|
|
sequence [iter (fun x -> add x q2) q1; clear q1], but runs
|
|
|
|
in constant time. *)
|