std::optional<T>::or_else
来自cppreference.com
template< class F > constexpr optional or_else( F&& f ) const&; |
(1) | (C++23 起) |
template< class F > constexpr optional or_else( F&& f ) &&; |
(2) | (C++23 起) |
若 *this 含值则返回它。否则返回 f
的结果。
若 std::remove_cvref_t<std::invoke_result_t<F>> 与 std::optional<T> 不是同一类型则程序非良构。
1) 等价于 return *this ? *this : std::forward<F>(f)(); 。此重载仅若 std::copy_constructible<T> 与 std::invocable<F> 均得到实现才参与重载决议。
2) 等价于 return *this ? std::move(*this) : std::forward<F>(f)(); 。此重载仅若 std::move_constructible<T> 与 std::invocable<F> 均得到实现才参与重载决议。
参数
f | - | 返回 std::optional<T> 的函数或可调用 (Callable) 对象 |
返回值
*this 或 f
的结果,如上所示。
示例
本节未完成 原因:暂无示例 |
参阅
若所含值可用则返回它,否则返回另一个值 (公开成员函数) | |
(C++23) |
若所含值存在则返回给定的函数在其上的结果,否则返回空的 optional (公开成员函数) |
(C++23) |
若所含值存在则返回含有变换后的所含值的 optional ,否则返回空的 optional (公开成员函数) |