std::rel_ops Namespace Reference


Detailed Description

The generated relational operators are sequestered here.

Functions


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 90 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 116 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 103 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 129 of file stl_relops.h.


Generated on Wed Mar 26 00:45:04 2008 for libstdc++ by  doxygen 1.5.1