pop method

bool pop()

Implementation

bool pop() {
  if (canPop) {
    _history.removeLast();
    return true;
  }
  return false;
}