pop method

T pop()

Implementation

T pop() {
  if (!_sorted) _sort();
  return _contents.removeLast();
}