Lines Matching refs:Value
30 const E &Value() const &noexcept in Value() function
34 E &Value() & noexcept in Value() function
38 E &&Value() && noexcept in Value() function
72 …ed(Unexpected<E> e) noexcept(std::is_nothrow_move_constructible_v<E>) : v_(std::move(e.Value())) {} in noexcept()
102 const T &Value() const &noexcept(ExpectedConfig::RELEASE) in Value() function
109 T &Value() & noexcept(ExpectedConfig::RELEASE) in Value() function
115 T &&Value() && noexcept(ExpectedConfig::RELEASE) in Value() function
123 return Value(); in noexcept()
128 return Value(); in noexcept()
133 return std::move(*this).Value(); in noexcept()
140 return Value(); in ValueOr()
149 return Value(); in ValueOr()