package coq

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a t
exception Empty
val create : unit -> 'a t
val push : 'a -> 'a t -> unit
val find : ('a -> bool) -> 'a t -> 'a
val is_empty : 'a t -> bool
val iter : ('a -> unit) -> 'a t -> unit
val clear : 'a t -> unit
val length : 'a t -> int
val pop : 'a t -> 'a
val top : 'a t -> 'a
val to_list : 'a t -> 'a list
val find_map : ('a -> 'b option) -> 'a t -> 'b
val fold_until : ('c -> 'a -> 'c CSig.until) -> 'c -> 'a t -> 'c