mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
Merge PR #643
This commit is contained in:
@@ -2685,10 +2685,9 @@ With C++11 we can write this, putting the results directly in existing local var
|
|||||||
tie(iter, success) = myset.insert("Hello"); // normal return value
|
tie(iter, success) = myset.insert("Hello"); // normal return value
|
||||||
if (success) do_something_with(iter);
|
if (success) do_something_with(iter);
|
||||||
|
|
||||||
With C++17 we should be able to use "structured bindinds" to declare and initialize the multiple variables:
|
With C++17 we should be able to use "structured bindings" to declare and initialize the multiple variables:
|
||||||
|
|
||||||
auto [iter, success] = myset.insert("Hello"); // C++17 structured binding
|
if (auto [ iter, success ] = myset.insert("Hello"); success) do_something_with(iter);
|
||||||
if (success) do_something_with(iter);
|
|
||||||
|
|
||||||
##### Exception
|
##### Exception
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user