| 126 | } |
| 127 | |
| 128 | constexpr auto value() & -> _Tp& |
| 129 | { |
| 130 | if (!__has_value_) |
| 131 | { |
| 132 | STDEXEC_THROW(__bad_optional_access()); |
| 133 | } |
| 134 | return __value_.__get(); |
| 135 | } |
| 136 | |
| 137 | constexpr auto value() const & -> _Tp const & |
| 138 | { |
no test coverage detected