const /*ignore-type*/ ignore;
(since C++11)constexpr /*ignore-type*/ ignore;
(since C++14){
template< class T >
const /*ignore-type*/& operator=( const T& ) const noexcept
{
return *this;
}
{
template< class T >
constexpr const /*ignore-type*/& operator=( const T& ) const noexcept
{
return *this;
}
1) An object such that any value can be assigned to it with no effect.
2) The type of std::ignore
.
A void expression or a volatile bit-field value cannot be assigned to std::ignore
.
std::ignore
is intended for use with std::tie when unpacking a std::tuple, as a placeholder for the arguments that are not used, but can be used for any unwanted assignment.
Some code guides recommend using std::ignore
to avoid warnings from unused return values of [[nodiscard]]
functions, even though an assignment isn't required.
For ignoring values not requiring assignment, one may cast to void. For variables that have names, but whose value is unused, one may cast those to void or declare those variables with [[maybe_unused]]
.
std::ignore
together with a [[nodiscard]]
function.#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 butstd::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 creates a tuple of lvalue references or unpacks a tuple into individual objects
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4