libstdc++
|
The generated relational operators are sequestered here.
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. |
This function uses ==
to determine its result.
Definition at line 88 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. |
This function uses <
to determine its result.
Definition at line 114 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. |
This function uses <
to determine its result.
Definition at line 101 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. |
This function uses <
to determine its result.
Definition at line 127 of file stl_relops.h.