Provided by: libstdc++6-4.6-doc_4.6.4-6ubuntu2_all 

NAME
std::rel_ops -
SYNOPSIS
Functions
template<class _Tp > bool operator!= (const _Tp &__x, const _Tp &__y)
template<class _Tp > bool operator<= (const _Tp &__x, const _Tp &__y)
template<class _Tp > bool operator> (const _Tp &__x, const _Tp &__y)
template<class _Tp > bool operator>= (const _Tp &__x, const _Tp &__y)
Detailed Description
The generated relational operators are sequestered here.
Function Documentation
template<class _Tp > bool std::rel_ops::operator!= (const _Tp &__x, const _Tp &__y) [inline]
Defines != for arbitrary types, in terms of ==.
Parameters:
x A thing.
y Another thing.
Returns:
x != y
This function uses == to determine its result.
Definition at line 88 of file stl_relops.h.
template<class _Tp > bool std::rel_ops::operator<= (const _Tp &__x, const _Tp &__y) [inline]
Defines <= for arbitrary types, in terms of <.
Parameters:
x A thing.
y Another thing.
Returns:
x <= y
This function uses < to determine its result.
Definition at line 114 of file stl_relops.h.
template<class _Tp > bool std::rel_ops::operator> (const _Tp &__x, const _Tp &__y) [inline]
Defines > for arbitrary types, in terms of <.
Parameters:
x A thing.
y Another thing.
Returns:
x > y
This function uses < to determine its result.
Definition at line 101 of file stl_relops.h.
template<class _Tp > bool std::rel_ops::operator>= (const _Tp &__x, const _Tp &__y) [inline]
Defines >= for arbitrary types, in terms of <.
Parameters:
x A thing.
y Another thing.
Returns:
x >= y
This function uses < to determine its result.
Definition at line 127 of file stl_relops.h.
Author
Generated automatically by Doxygen for libstdc++ from the source code.
libstdc++ Thu Mar 20 2014 std::rel_ops(3cxx)