ADTF  3.18.2
result_info_impl.h File Reference

Private implementation for ResultInfo type and functions. More...

Go to the source code of this file.

Namespaces

 a_util
 Serves as the root component, with common functionality documented in core functionality.
 
 a_util::result
 Serves as component for functionality handling error and return types.
 

Functions

template<typename ResultType >
bool isOk (const ResultType &result)
 Check whether a return value indicates a successful function execution. More...
 
template<typename ResultType >
bool isFailed (const ResultType &result)
 Check whether a return value indicates an unsuccessful function execution. More...
 
template<typename ResultTypeLHS , typename ResultTypeRHS >
bool operator== (const ResultInfo< ResultTypeLHS > &lhs, const ResultInfo< ResultTypeRHS > &rhs)
 Compare two specialized result information objects for equality. More...
 
template<typename ResultTypeLHS , typename ResultTypeRHS >
bool operator!= (const ResultInfo< ResultTypeLHS > &lhs, const ResultInfo< ResultTypeRHS > &rhs)
 Compare two specialized result information objects for inequality. More...
 
template<typename ResultTypeLHS , typename ResultTypeRHS >
bool operator< (const ResultInfo< ResultTypeLHS > &lhs, const ResultInfo< ResultTypeRHS > &rhs)
 Less-than operator for two specialized result information objects. More...
 
template<typename ResultTypeLHS , typename ResultTypeRHS >
bool operator> (const ResultInfo< ResultTypeLHS > &lhs, const ResultInfo< ResultTypeRHS > &rhs)
 Greater-than operator for two specialized result information objects. More...
 
template<typename ResultTypeLHS , typename ResultTypeRHS >
bool operator<= (const ResultInfo< ResultTypeLHS > &lhs, const ResultInfo< ResultTypeRHS > &rhs)
 Less-than-or-equal operator for two specialized result information objects. More...
 
template<typename ResultTypeLHS , typename ResultTypeRHS >
bool operator>= (const ResultInfo< ResultTypeLHS > &lhs, const ResultInfo< ResultTypeRHS > &rhs)
 Greater-than-or-equal operator for two specialized result information objects. More...
 

Detailed Description

Private implementation for ResultInfo type and functions.

Definition in file result_info_impl.h.