Lines Matching defs:value
74 explicit Result(S&& value) : value_(std::forward<S>(value)) {}
94 // Accessor for the value. Returns const reference if {this} is l-value or
95 // const, and returns r-value reference if {this} is r-value. This allows to
97 // {std::move(result).value()}.
98 const T& value() const & {
102 T&& value() && {
190 // Use {nullptr_t} as data value to indicate that this only stores the error,
191 // but no result value (the only valid value is {nullptr}).