This commit is contained in:
joaquintides
2023-02-12 17:35:02 +01:00
parent c9a75a56c2
commit 866c58a879

View File

@ -10,7 +10,7 @@ being node-based, it provides pointer/iterator stability and node handling funct
Its performance lies between those of `boost::unordered_map` and `boost::unordered_flat_map`.
As a result of its using open addressing, the interface of `boost::unordered_node_map` deviates in
a number of aspects from that of `boost::unordered_node_map`/`std::unordered_node_map`:
a number of aspects from that of `boost::unordered_map`/`std::unordered_map`:
- `begin()` is not constant-time.
- `erase(iterator)` returns `void`.