template<typename T, typename Error>
&& detail::unqualified<T>
&& requires(Error&& e) {
}
Concept determining whether the Expected type supports rebinding its error-type.
Definition Common.hpp:403
Concept describing a type that acts like std::expected (has both a value and an error channel).
Definition Common.hpp:394
The central customization point for the library.
Definition Common.hpp:102
Concept determining whether the Expected type supports rebinding its error-type.
- Template Parameters
-
| T | The source-expected type to adapt the new error-type. |
| Error | The new error-type to rebind to. |