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 *)
|
|
|
|
(* under the terms of the GNU Library General Public License. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
type 'a t = { mutable c : 'a list }
|
|
|
|
|
|
|
|
exception Empty
|
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
let create () = { c = [] }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
let clear s = s.c <- []
|
|
|
|
|
|
|
|
let push x s = s.c <- x :: s.c
|
|
|
|
|
|
|
|
let pop s =
|
|
|
|
match s.c with
|
|
|
|
hd::tl -> s.c <- tl; hd
|
|
|
|
| [] -> raise Empty
|
|
|
|
|
|
|
|
let length s = List.length s.c
|
|
|
|
|
|
|
|
let iter f s = List.iter f s.c
|