Lines Matching refs:stored_value
84 U stored_value;
95 : stored_value(forward<Args>(args)...) {}
99 stored_value.~U();
134 RPC_ATTRS constexpr const T &value() const & { return storage.stored_value; }
136 RPC_ATTRS constexpr T &value() & { return storage.stored_value; }
141 return &storage.stored_value;
143 RPC_ATTRS constexpr T *operator->() { return &storage.stored_value; }
145 return storage.stored_value;
147 RPC_ATTRS constexpr T &operator*() & { return storage.stored_value; }
149 RPC_ATTRS constexpr T &&value() && { return move(storage.stored_value); }
150 RPC_ATTRS constexpr T &&operator*() && { return move(storage.stored_value); }