* When erasing an element, the insert order will be preserved and no holes * will be present in the container returned by 'values_container()'. * * The method is in O(bucket_count()), if the order is not important * 'unordered_erase(...)' method is faster with an O(1) average complexity. */
| 342 | * 'unordered_erase(...)' method is faster with an O(1) average complexity. |
| 343 | */ |
| 344 | iterator erase(iterator pos) { return m_ht.erase(pos); } |
| 345 | |
| 346 | /** |
| 347 | * @copydoc erase(iterator pos) |
nothing calls this directly
no outgoing calls
no test coverage detected