| 622 | constexpr const T&& operator*() const&& noexcept { return std::move(this->val); } |
| 623 | constexpr explicit operator bool() const noexcept { return this->active; } |
| 624 | constexpr bool has_value() const noexcept { return this->active; } |
| 625 | |
| 626 | constexpr T& value() & |
| 627 | { |
no outgoing calls