From 73582be56331aab35a43344f3737744bf43b9642 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Wed, 3 Apr 2024 20:07:04 +0200 Subject: [PATCH] fixed #240 --- doc/unordered/unordered_node_map.adoc | 2 +- doc/unordered/unordered_node_set.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/unordered/unordered_node_map.adoc b/doc/unordered/unordered_node_map.adoc index 0072bd74..8056bb64 100644 --- a/doc/unordered/unordered_node_map.adoc +++ b/doc/unordered/unordered_node_map.adoc @@ -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 diff --git a/doc/unordered/unordered_node_set.adoc b/doc/unordered/unordered_node_set.adoc index dccc2400..f5b5fdf2 100644 --- a/doc/unordered/unordered_node_set.adoc +++ b/doc/unordered/unordered_node_set.adoc @@ -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