diff --git a/doc/changes.qbk b/doc/changes.qbk index 023d18cd..3a294bb2 100644 --- a/doc/changes.qbk +++ b/doc/changes.qbk @@ -306,6 +306,10 @@ C++11 support has resulted in some breaking changes: [h2 Boost 1.64.0] * Initial support for new C++17 member functions: `insert_or_assign` and `try_emplace` in `unordered_map`, - `merge` and `extract` in all containers. +* Initial support for `merge` and `extract`. + Does not include transfering nodes between + `unordered_map` and `unordered_multimap` or between `unordered_set` and + `unordered_multiset` yet. That will hopefully be in the next version of + Boost. [endsect] diff --git a/doc/ref.php b/doc/ref.php index abdb9a17..efbca895 100644 --- a/doc/ref.php +++ b/doc/ref.php @@ -925,6 +925,12 @@ EOL; A node_type owning the element. + + + In C++17 a node extracted using this method can be inserted into a compatible , + but that is not supported yet. + + @@ -940,6 +946,12 @@ EOL; Only throws an exception if it is thrown by hasher or key_equal. + + + In C++17 a node extracted using this method can be inserted into a compatible , + but that is not supported yet. + + @@ -984,6 +996,8 @@ EOL; Can invalidate iterators, but only if the insert causes the load factor to be greater to or equal to the maximum load factor. Pointers and references to elements are never invalidated. + In C++17 this can be used to insert a node extracted from a compatible , + but that is not supported yet. @@ -1028,6 +1042,8 @@ EOL; The standard is fairly vague on the meaning of the hint. But the only practical way to use it, and the only way that Boost.Unordered supports is to point to an existing element with the same . Can invalidate iterators, but only if the insert causes the load factor to be greater to or equal to the maximum load factor. Pointers and references to elements are never invalidated. + In C++17 this can be used to insert a node extracted from a compatible , + but that is not supported yet. @@ -1175,6 +1191,9 @@ EOL; <Value, H2, P2, Alloc>& + + Does not support merging with a compatible yet. +