From 8bb94734435b21cbda0e73a9d4d3050900f66704 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 4 Sep 2016 08:07:51 +0100 Subject: [PATCH] Document assignment from initializer list. --- doc/ref.php | 15 ++++++++++++++ doc/ref.xml | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 75 insertions(+) diff --git a/doc/ref.php b/doc/ref.php index b516a4f2..0f66d789 100644 --- a/doc/ref.php +++ b/doc/ref.php @@ -358,6 +358,21 @@ EOL; + + + initializer_list<value_type> + + & + + Assign from values in initializer list. All existing elements are either overwritten by the new elements or destroyed. + + + + value_type is CopyInsertable into the container and + CopyAssignable. + + + allocator_type diff --git a/doc/ref.xml b/doc/ref.xml index 406790b5..b0f45726 100644 --- a/doc/ref.xml +++ b/doc/ref.xml @@ -299,6 +299,21 @@ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + + + initializer_list<value_type> + + unordered_set& + + Assign from values in initializer list. All existing elements are either overwritten by the new elements or destroyed. + + + + value_type is CopyInsertable into the container and + CopyAssignable. + + + allocator_type @@ -1336,6 +1351,21 @@ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + + + initializer_list<value_type> + + unordered_multiset& + + Assign from values in initializer list. All existing elements are either overwritten by the new elements or destroyed. + + + + value_type is CopyInsertable into the container and + CopyAssignable. + + + allocator_type @@ -2383,6 +2413,21 @@ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + + + initializer_list<value_type> + + unordered_map& + + Assign from values in initializer list. All existing elements are either overwritten by the new elements or destroyed. + + + + value_type is CopyInsertable into the container and + CopyAssignable. + + + allocator_type @@ -3467,6 +3512,21 @@ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + + + initializer_list<value_type> + + unordered_multimap& + + Assign from values in initializer list. All existing elements are either overwritten by the new elements or destroyed. + + + + value_type is CopyInsertable into the container and + CopyAssignable. + + + allocator_type