sig
  type 'a t = 'Stack.t
  exception Empty
  val create : unit -> 'a t
  val push : '-> 'a t -> unit
  val clear : 'a t -> unit
  val copy : 'a t -> 'a t
  val is_empty : 'a t -> bool
  val length : 'a t -> int
  val iter : ('-> unit) -> 'a t -> unit
  type 'a enumerable = 'a t
  val enum : 'a t -> 'BatEnum.t
  val enum_destruct : 'a t -> 'BatEnum.t
  val of_enum : 'BatEnum.t -> 'a t
  val print :
    ?first:string ->
    ?last:string ->
    ?sep:string ->
    ('BatInnerIO.output -> '-> unit) ->
    'BatInnerIO.output -> 'b t -> unit
  val compare : 'BatOrd.comp -> 'a t BatOrd.comp
  val equal : 'BatOrd.eq -> 'a t BatOrd.eq
  module Exceptionless = BatStack.Exceptionless
  val top : 'BatStack.t -> 'a option
  val pop : 'BatStack.t -> 'a option
end