Go to the source code of this file.
| Namespaces | |
| namespace | std | 
| Classes | |
| struct | std::pair< _T1, _T2 > | 
| pair holds two objects of arbitrary type.  More... | |
| Defines | |
| #define | _PAIR_H 1 | 
| 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. | |
Definition in file stl_pair.h.
| #define _PAIR_H 1 | 
Definition at line 62 of file stl_pair.h.
 1.4.7
 1.4.7