EtcPal
0.4.1
ETC Platform Abstraction Layer (EtcPal)
|
View other versions:
|
C++ wrapper and utilities for etcpal/error.h.
Go to the source code of this file.
Data Structures | |
class | Error |
A wrapper class for the EtcPal error type. More... | |
class | BadExpectedAccess |
Exception representing bad access to an Expected instance. More... | |
class | Expected< T > |
A type representing either a value or an etcpal_error_t code. More... | |
Functions | |
Error Relational Operators | |
constexpr bool | operator== (etcpal_error_t code, const Error &error) |
constexpr bool | operator!= (etcpal_error_t code, const Error &error) |
constexpr bool | operator== (const Error &error, etcpal_error_t code) |
constexpr bool | operator!= (const Error &error, etcpal_error_t code) |
constexpr bool | operator== (const Error &a, const Error &b) |
constexpr bool | operator!= (const Error &a, const Error &b) |
Expected Relational Operators | |
template<typename T1 , typename T2 > | |
constexpr bool | operator== (const Expected< T1 > &x, const Expected< T2 > &y) |
template<typename T1 , typename T2 > | |
constexpr bool | operator!= (const Expected< T1 > &x, const Expected< T2 > &y) |
template<typename T1 , typename T2 > | |
constexpr bool | operator== (const Expected< T1 > &x, const T2 &v) |
template<typename T1 , typename T2 > | |
constexpr bool | operator== (const T2 &v, const Expected< T1 > &x) |
template<typename T1 , typename T2 > | |
constexpr bool | operator!= (const Expected< T1 > &x, const T2 &v) |
template<typename T1 , typename T2 > | |
constexpr bool | operator!= (const T2 &v, const Expected< T1 > &x) |
template<typename T > | |
constexpr bool | operator== (const Expected< T > &x, etcpal_error_t e) |
template<typename T > | |
constexpr bool | operator== (etcpal_error_t e, const Expected< T > &x) |
template<typename T > | |
constexpr bool | operator!= (const Expected< T > &x, etcpal_error_t e) |
template<typename T > | |
constexpr bool | operator!= (etcpal_error_t e, const Expected< T > &x) |