clear method

void clear()

Removes all elements from the map.

Implementation

void clear() {
  _container.clear();
  _size = 0;
}