/// Returns a const_iterator pointing to the first element stored in the map. virtual const_iterator begin() const {return _base.begin();}
/// Returns an iterator pointing to the first element stored in the map. First is defined by the map's comparison operator, Compare. virtual iterator begin() {return _base.begin();}