size method

int size()

get the size of the stack.

Implementation

int size() {
  return _list.length;
}