|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Primary template | ||
template<class U=std::remove_cv_t<T>> constexpr T value_or( U&& default_value)const&; | (1) | (since C++23) |
template<class U=std::remove_cv_t<T>> constexpr T value_or( U&& default_value)&&; | (2) | (since C++23) |
Returns the expected value if it exists, otherwise returnsdefault_value.
Thevoid partial specialization does not have these member functions.
Contents |
| default_value | - | the value to use in case*this does not contain an expected value |
| This section is incomplete Reason: no example |
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 3886 | C++23 | U does not have a default template argument | specified |
| returns the expected value (public member function)[edit] | |
| returns the unexpected value if present, another value otherwise (public member function)[edit] |