table of contents
std::rel_ops(3) | Library Functions Manual | std::rel_ops(3) |
NAME¶
std::rel_ops -
The generated relational operators are sequestered here.
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:
y Another thing.
Returns:
This function uses == to determine its result.
Definition at line 85 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:
y Another thing.
Returns:
This function uses < to determine its result.
Definition at line 111 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:
y Another thing.
Returns:
This function uses < to determine its result.
Definition at line 98 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:
y Another thing.
Returns:
This function uses < to determine its result.
Definition at line 124 of file stl_relops.h.
Author¶
Generated automatically by Doxygen for libstdc++ from the source code.
19 Jun 2018 | libstdc++ |