erase overloads
Declared in <bslstp_hashset.h>
Erase the element referenced by the specified __it.
void
erase(iterator __it);
» more...
Erase the element with the specified __key and return the count removed.
size_type
erase(key_type const& __key);
» more...
Erase the elements in the specified iterator range.
void
erase(
iterator __f,
iterator __l);
» more...
number of elements erased
| Name | Description |
|---|---|
| __it | iterator referring to the element to erase |
| __key | key of the element(s) to erase |
| __f | beginning of the erased range |
| __l | end of the erased range (exclusive) |