pop method

T pop()

Removes and returns the last value on the list

Implementation

T pop() {
  return _array[_getCyclicIndex(_length-- - 1)]!;
}