aboutsummaryrefslogtreecommitdiff
path: root/lib/searchstack.mli
diff options
context:
space:
mode:
authorppedrot2013-09-06 17:18:44 +0000
committerppedrot2013-09-06 17:18:44 +0000
commitba524ddfaabc80b31a439544de46c40366565ae8 (patch)
treeff4350bc4ec7e225be1b6f9eeb5af83b45ab7f36 /lib/searchstack.mli
parentab7377de0a913ca6218bc7377fab33b8018f8f59 (diff)
Moving Searchstack to CStack, and normalizing names a bit.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16765 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/searchstack.mli')
-rw-r--r--lib/searchstack.mli25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/searchstack.mli b/lib/searchstack.mli
deleted file mode 100644
index 6c81a2a9c9..0000000000
--- a/lib/searchstack.mli
+++ /dev/null
@@ -1,25 +0,0 @@
-(************************************************************************)
-(* v * The Coq Proof Assistant / The Coq Development Team *)
-(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2010 *)
-(* \VV/ **************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(************************************************************************)
-
-type 'a t
-type ('a,'b) search = [ `Stop of 'b | `Cont of 'a ]
-
-val create : unit -> 'a t
-val push : 'a -> 'a t -> unit
-val find : ('c -> 'a -> ('c, 'b) search) -> 'c -> 'a t -> 'b
-val is_empty : 'a t -> bool
-val iter : ('a -> unit) -> 'a t -> unit
-val clear : 'a t -> unit
-val length : 'a t -> int
-
-(* may raise Stack.Empty *)
-val pop : 'a t -> 'a
-val top : 'a t -> 'a
-
-(* Extra *)
-val to_list : 'a t -> 'a list