Packages

final class MutableStack[T] extends AnyRef

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MutableStack
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MutableStack()

Value Members

  1. def asList: List[T]
  2. def isEmpty: Boolean
  3. def pop(): T
  4. def popOpt(): commons.Opt[T]
  5. def popOption(): Option[T]
  6. def push(elem: T): Unit
  7. def pushAll(elems: TraversableOnce[T]): Unit
  8. def size: Int
  9. def top: T
  10. def topOpt: commons.Opt[T]
  11. def topOption: Option[T]