Stack<T> constructor

Stack<T>()

Default constructor sets the maximum stack size to 'no limit.'

Implementation

Stack() {
  _sizeMax = noLimit;
}