|
template<typename E > |
constexpr auto | stdx::make_unexpected (E &&e) -> unexpected< std::decay_t< E > > |
|
template<class E > |
| stdx::unexpected (E) -> unexpected< E > |
|
constexpr member_policy | stdx::base::operator| (member_policy x, member_policy y) |
|
template<class Exp , class Func , typename value_type = typename std::decay_t<Exp>::value_type, std::enable_if_t< std::is_void_v< value_type > ? std::is_invocable_v< Func > :std::is_invocable_v< Func, value_type > > * = nullptr> |
constexpr auto | stdx::base::and_then_impl (Exp &&exp, Func &&func) |
|
template<class Exp , class Func , typename error_type = typename std::decay_t<Exp>::error_type, std::enable_if_t< std::is_invocable_v< Func, error_type > > * = nullptr> |
constexpr auto | stdx::base::or_else_impl (Exp &&exp, Func &&func) |
|
template<class Exp , class Func > |
constexpr auto | stdx::expected_transform_impl (Exp &&exp, Func &&func) |
|
template<class E1 , class E2 > |
bool | stdx::operator== (const unexpected< E1 > &a, const unexpected< E2 > &b) |
|
template<class E1 , class E2 > |
bool | stdx::operator!= (const unexpected< E1 > &a, const unexpected< E2 > &b) |
|
template<class T1 , class E1 , class T2 , class E2 > |
bool | stdx::operator== (const expected< T1, E1 > &a, const expected< T2, E2 > &b) |
|
template<class E1 , class E2 > |
bool | stdx::operator== (const expected< void, E1 > &a, const expected< void, E2 > &b) |
|
template<class T1 , class E1 , class T2 , class E2 > |
bool | stdx::operator!= (const expected< T1, E1 > &a, const expected< T2, E2 > &b) |
|
template<class T1 , class E1 , class E2 > |
bool | stdx::operator== (const expected< T1, E1 > &a, const unexpected< E2 > &b) |
|
template<class T1 , class E1 , class E2 > |
bool | stdx::operator== (const unexpected< E2 > &a, const expected< T1, E1 > &b) |
|
template<class T1 , class E1 , class E2 > |
bool | stdx::operator!= (const expected< T1, E1 > &a, const unexpected< E2 > &b) |
|
template<class T1 , class E1 , class E2 > |
bool | stdx::operator!= (const unexpected< E2 > &a, const expected< T1, E1 > &b) |
|