removeLast method

void removeLast()

Implementation

void removeLast() {
  if (_count > 0) {
    _count--;
  }
}