erase
Bimap::erase
Erases an element from the map.
Declaration
template <typename T>
void erase(const T& key);
Parameters
Name |
Type |
Description |
---|---|---|
key |
T |
The key of the element to erase. |
Returns
None.
Declaration
template <typename U>
void erase(const U& key);
Parameters
Name |
Type |
Description |
---|---|---|
key |
U |
The key of the element to erase. |
Returns
None.