STL definition of a pair. More...
Go to the source code of this file.
Classes | |
| struct | std::pair< _T1, _T2 > | 
| pair holds two objects of arbitrary type.  More... | |
Functions | |
| template<class _T1 , class _T2 > | |
| bool | std::operator== (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y) | 
| Two pairs of the same type are equal iff their members are equal.  | |
| template<class _T1 , class _T2 > | |
| bool | std::operator< (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y) | 
| <http://gcc.gnu.org/onlinedocs/libstdc++/20_util/howto.html#pairlt>  | |
| template<class _T1 , class _T2 > | |
| bool | std::operator!= (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y) | 
Uses operator== to find the result.  | |
| template<class _T1 , class _T2 > | |
| bool | std::operator> (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y) | 
Uses operator< to find the result.  | |
| template<class _T1 , class _T2 > | |
| bool | std::operator<= (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y) | 
Uses operator< to find the result.  | |
| template<class _T1 , class _T2 > | |
| bool | std::operator>= (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y) | 
Uses operator< to find the result.  | |
| template<class _T1 , class _T2 > | |
| pair< _T1, _T2 > | std::make_pair (_T1 __x, _T2 __y) | 
| A convenience wrapper for creating a pair from two objects.   | |
 1.6.1