The generated relational operators are sequestered here. More...
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 85 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 111 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 98 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 124 of file stl_relops.h.