Functions | |
| template<class _Tp> | |
| bool | operator!= (const _Tp &__x, const _Tp &__y) | 
Defines != for arbitrary types, in terms of ==.   | |
| template<class _Tp> | |
| bool | operator> (const _Tp &__x, const _Tp &__y) | 
Defines > for arbitrary types, in terms of <.   | |
| template<class _Tp> | |
| bool | operator<= (const _Tp &__x, const _Tp &__y) | 
Defines <= for arbitrary types, in terms of <.   | |
| template<class _Tp> | |
| bool | operator>= (const _Tp &__x, const _Tp &__y) | 
Defines >= for arbitrary types, in terms of <.   | |
| bool std::rel_ops::operator!= | ( | const _Tp & | __x, | |
| const _Tp & | __y | |||
| ) |  [inline] | 
        
Defines != for arbitrary types, in terms of ==. 
| x | A thing. | |
| y | Another thing. | 
== to determine its result. 
Definition at line 92 of file stl_relops.h.
| bool std::rel_ops::operator> | ( | const _Tp & | __x, | |
| const _Tp & | __y | |||
| ) |  [inline] | 
        
Defines > for arbitrary types, in terms of <. 
| x | A thing. | |
| y | Another thing. | 
< to determine its result. 
Definition at line 105 of file stl_relops.h.
| bool std::rel_ops::operator<= | ( | const _Tp & | __x, | |
| const _Tp & | __y | |||
| ) |  [inline] | 
        
Defines <= for arbitrary types, in terms of <. 
| x | A thing. | |
| y | Another thing. | 
< to determine its result. 
Definition at line 118 of file stl_relops.h.
| bool std::rel_ops::operator>= | ( | const _Tp & | __x, | |
| const _Tp & | __y | |||
| ) |  [inline] | 
        
Defines >= for arbitrary types, in terms of <. 
| x | A thing. | |
| y | Another thing. | 
< to determine its result. 
Definition at line 131 of file stl_relops.h.
 1.4.7