SUT.Make
module M : sig ... end
type elt = M.sut
Type of a single SUT
val create : int -> unit -> t
create n ()
creates an initial stack with n
SUTs
val clear : t -> unit
clear t
removes all elements from the stack t
of SUTs
val size : t -> int
size t
returns the number of SUTs currently on the stack t
val get_name : t -> int -> string
get_name t n
returns the name for the n
th element of the stack t
of SUTs