clear method

void clear()

Removes all elements from the deque.

Implementation

void clear() {
  _queue.clear();
}