popToBottom method

void popToBottom()

Implementation

void popToBottom() {
  while (canPop()) {
    pop();
  }
}