1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
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
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
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 <- []
|
|
|
|
|
2001-10-25 04:32:25 -07:00
|
|
|
let copy s = { c = s.c }
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
let push x s = s.c <- x :: s.c
|
|
|
|
|
|
|
|
let pop s =
|
|
|
|
match s.c with
|
|
|
|
hd::tl -> s.c <- tl; hd
|
|
|
|
| [] -> raise Empty
|
|
|
|
|
2000-04-13 05:16:02 -07:00
|
|
|
let top s =
|
|
|
|
match s.c with
|
|
|
|
hd::_ -> hd
|
|
|
|
| [] -> raise Empty
|
|
|
|
|
2002-06-27 01:48:26 -07:00
|
|
|
let is_empty s = (s.c = [])
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
let length s = List.length s.c
|
|
|
|
|
|
|
|
let iter f s = List.iter f s.c
|