std::rel_ops

Langue: en

Version: 321215 (ubuntu - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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)

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 92 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 118 of file stl_relops.h.

References std::operator<=().

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 105 of file stl_relops.h.

References std::operator>().

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 131 of file stl_relops.h.

References std::operator>=().

Author

Generated automatically by Doxygen for libstdc++ from the source code.