stl_relops.h File Reference

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  std
namespace  std::rel_ops

Functions

template<class Type>
bool operator!= (const Type &x, const Type &y)
 Defines != for arbitrary types, in terms of ==.
template<class Type>
bool operator> (const Type &x, const Type &y)
 Defines > for arbitrary types, in terms of <.
template<class Type>
bool operator<= (const Type &x, const Type &y)
 Defines <= for arbitrary types, in terms of <.
template<class Type>
bool operator>= (const Type &x, const Type &y)
 Defines >= for arbitrary types, in terms of <.


Detailed Description

This is an internal header file, included by other library headers. You should not attempt to use it directly.

Definition in file stl_relops.h.


Function Documentation

template<class Type>
bool operator!= const Type &  x,
const Type &  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 91 of file stl_relops.h.

template<class Type>
bool operator<= const Type &  x,
const Type &  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 117 of file stl_relops.h.

template<class Type>
bool operator> const Type &  x,
const Type &  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 104 of file stl_relops.h.

template<class Type>
bool operator>= const Type &  x,
const Type &  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 130 of file stl_relops.h.


Generated on Thu Feb 10 23:23:36 2005 for libstdc++-v3 Source by  doxygen 1.4.0