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 <.
The generated relational operators are sequestered here.
Defines != for arbitrary types, in terms of ==.
Parameters:
Returns:
This function uses == to determine its result.
Definition at line 87 of file stl_relops.h.
Defines <= for arbitrary types, in terms of <.
Parameters:
Returns:
This function uses < to determine its result.
Definition at line 113 of file stl_relops.h.
Defines > for arbitrary types, in terms of <.
Parameters:
Returns:
This function uses < to determine its result.
Definition at line 100 of file stl_relops.h.
Defines >= for arbitrary types, in terms of <.
Parameters:
Returns:
This function uses < to determine its result.
Definition at line 126 of file stl_relops.h.
Generated automatically by Doxygen for libstdc++ from the source code.