STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Functions
rel_ops Namespace Reference

Functions

template<class _Ty >
bool operator!= (const _Ty &_Left, const _Ty &_Right)
 
template<class _Ty >
bool operator> (const _Ty &_Left, const _Ty &_Right)
 
template<class _Ty >
bool operator<= (const _Ty &_Left, const _Ty &_Right)
 
template<class _Ty >
bool operator>= (const _Ty &_Left, const _Ty &_Right)
 

Function Documentation

template<class _Ty >
bool rel_ops::operator!= ( const _Ty &  _Left,
const _Ty &  _Right 
)
inline
336  { // test for inequality, in terms of equality
337  return (!(_Left == _Right));
338  }
constexpr const _Ty &() _Left
Definition: algorithm:3590
constexpr const _Ty &() _Right
Definition: algorithm:3591
template<class _Ty >
bool rel_ops::operator<= ( const _Ty &  _Left,
const _Ty &  _Right 
)
inline
348  { // test if _Left <= _Right, in terms of operator<
349  return (!(_Right < _Left));
350  }
constexpr const _Ty &() _Left
Definition: algorithm:3590
constexpr const _Ty &() _Right
Definition: algorithm:3591
template<class _Ty >
bool rel_ops::operator> ( const _Ty &  _Left,
const _Ty &  _Right 
)
inline
342  { // test if _Left > _Right, in terms of operator<
343  return (_Right < _Left);
344  }
constexpr const _Ty &() _Left
Definition: algorithm:3590
constexpr const _Ty &() _Right
Definition: algorithm:3591
template<class _Ty >
bool rel_ops::operator>= ( const _Ty &  _Left,
const _Ty &  _Right 
)
inline
354  { // test if _Left >= _Right, in terms of operator<
355  return (!(_Left < _Right));
356  }
constexpr const _Ty &() _Left
Definition: algorithm:3590
constexpr const _Ty &() _Right
Definition: algorithm:3591