ManaPlus
Data Structures | Functions
mse::mstd Namespace Reference

Data Structures

class  vector
 

Functions

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

Function Documentation

◆ operator!=()

template<class _Ty , class _Alloc >
bool mse::mstd::operator!= ( const vector< _Ty, _Alloc > &  _Left,
const vector< _Ty, _Alloc > &  _Right 
)
inline

Definition at line 391 of file msemstdvector.h.

392  { // test for vector inequality
393  return (!(_Left == _Right));
394  }

◆ operator<=()

template<class _Ty , class _Alloc >
bool mse::mstd::operator<= ( const vector< _Ty, _Alloc > &  _Left,
const vector< _Ty, _Alloc > &  _Right 
)
inline

Definition at line 401 of file msemstdvector.h.

402  { // test if _Left <= _Right for vectors
403  return (!(_Right < _Left));
404  }

◆ operator>()

template<class _Ty , class _Alloc >
bool mse::mstd::operator> ( const vector< _Ty, _Alloc > &  _Left,
const vector< _Ty, _Alloc > &  _Right 
)
inline

Definition at line 396 of file msemstdvector.h.

397  { // test if _Left > _Right for vectors
398  return (_Right < _Left);
399  }

◆ operator>=()

template<class _Ty , class _Alloc >
bool mse::mstd::operator>= ( const vector< _Ty, _Alloc > &  _Left,
const vector< _Ty, _Alloc > &  _Right 
)
inline

Definition at line 406 of file msemstdvector.h.

407  { // test if _Left >= _Right for vectors
408  return (!(_Left < _Right));
409  }