| 6168 | |
| 6169 | public: |
| 6170 | expected(value_type_ const &value) noexcept : value_(value) {} |
| 6171 | expected(std::error_code const &error) noexcept : value_(error) {} |
| 6172 | |
| 6173 | explicit operator bool() const noexcept { return std::holds_alternative<value_type_>(value_); } |
nothing calls this directly
no outgoing calls
no test coverage detected