Namespace List   Compound List   File List   Namespace Members   Compound Members  

std::rel_ops Namespace Reference


Functions

template<class T> bool operator!= (const T &x, const T &y)
template<class T> bool operator> (const T &x, const T &y)
template<class T> bool operator<= (const T &x, const T &y)
template<class T> bool operator>= (const T&, const T&)


Function Documentation

template<class T>
bool std::rel_ops::operator!= (const T & x, const T & y)

{
			return !(x == y);
		}

template<class T>
bool std::rel_ops::operator> (const T & x, const T & y)

{
			return y < x;
		}

template<class T>
bool std::rel_ops::operator<= (const T & x, const T & y)

{
			return !(y < x);
		}

template<class T>
bool std::rel_ops::operator>= (const T &, const T &)

{
			return !(x < y);
		}

Generated at Tue Sep 14 07:34:43 1999 for FREE_C++_STANDARD_LIBRARY by doxygen  written by Dimitri van Heesch, © 1997-1999