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
280  { // test for inequality, in terms of equality
281  return (!(_Left == _Right));
282  }
void * _Right
Definition: utility:36
template<class _Ty >
bool rel_ops::operator<= ( const _Ty &  _Left,
const _Ty &  _Right 
)
inline
292  { // test if _Left <= _Right, in terms of operator<
293  return (!(_Right < _Left));
294  }
void * _Right
Definition: utility:36
template<class _Ty >
bool rel_ops::operator> ( const _Ty &  _Left,
const _Ty &  _Right 
)
inline
286  { // test if _Left > _Right, in terms of operator<
287  return (_Right < _Left);
288  }
void * _Right
Definition: utility:36
template<class _Ty >
bool rel_ops::operator>= ( const _Ty &  _Left,
const _Ty &  _Right 
)
inline
298  { // test if _Left >= _Right, in terms of operator<
299  return (!(_Left < _Right));
300  }
void * _Right
Definition: utility:36