Up
#
val create : unit
-> 'a
t
#
val add : 'a
-> 'a
t -> unit
#
val push : 'a
-> 'a
t -> unit
#
val is_empty : 'a
t -> bool
#
val iter : ('a
-> unit)
-> 'a
t -> unit
#
val fold : ('b
-> 'a
-> 'b)
-> 'b
-> 'a
t -> 'b
#
val transfer : 'a
t -> 'a
t -> unit
end