This commit is contained in:
joaquintides 2024-04-03 20:07:04 +02:00
parent fb41bdc82d
commit 73582be563
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
`boost::unordered_node_map` — A node-based, open-addressing unordered associative container that associates unique keys with another value.
`boost::unordered_node_map` uses an open-addressing layout like `boost::unordered_flat_map`, but,
being node-based, it provides pointer/iterator stability and node handling functionalities.
being node-based, it provides pointer stability and node handling functionalities.
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

View File

@ -6,7 +6,7 @@
`boost::unordered_node_set` — A node-based, open-addressing unordered associative container that stores unique values.
`boost::unordered_node_set` uses an open-addressing layout like `boost::unordered_flat_set`, but,
being node-based, it provides pointer/iterator stability and node handling functionalities.
being node-based, it provides pointer stability and node handling functionalities.
Its performance lies between those of `boost::unordered_set` and `boost::unordered_flat_set`.
As a result of its using open addressing, the interface of `boost::unordered_node_set` deviates in