std::ignore
From cppreference.com
Defined in header <tuple>
|
||
Defined in header <utility>
|
||
(1) | ||
const /*ignore-type*/ ignore; |
(since C++11) (until C++14) |
|
constexpr /*ignore-type*/ ignore; |
(since C++14) (inline since c++17) |
|
(2) | ||
struct /*ignore-type*/ { |
(since C++11) (until C++14) (exposition only*) |
|
struct /*ignore-type*/ { |
(since C++14) (exposition only*) |
|
1) An object such that any value can be assigned to it with no effect.
2) The type of
std::ignore
.Contents |
[edit] Notes
A void expression or a volatile bit-field value cannot be assigned to std::ignore
.
std::ignore
was initially intended for use with std::tie when unpacking a std::tuple, as a placeholder for the arguments that are not used.
Some code guides recommend using std::ignore
to avoid warnings from unused return values of [[nodiscard]]
functions.
[edit] Example
- Demonstrates the use of
std::ignore
together with a[[nodiscard]]
function. - Unpacks a std::pair<iterator, bool> returned by std::set::insert(), but only saves the boolean.
Run this code
#include <iostream> #include <set> #include <string> #include <tuple> [[nodiscard]] int dontIgnoreMe() { return 42; } int main() { std::ignore = dontIgnoreMe(); std::set<std::string> set_of_str; if (bool inserted{false}; std::tie(std::ignore, inserted) = set_of_str.insert("Test"), inserted) std::cout << "Value was inserted successfully.\n"; }
Output:
Value was inserted successfully.
[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 2773 | C++14 | std::tuple was made constexpr but std::ignore was not yet
|
made constexpr |
P2968R2 | C++11 | the behavior of std::ignore outside of std::tie was not formally specified
|
made fully specified |
[edit] See also
(C++11) |
creates a tuple of lvalue references or unpacks a tuple into individual objects (function template) |