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&) |
{
return !(x == y);
}
{
return y < x;
}
{
return !(y < x);
}
{
return !(x < y);
}
written by Dimitri van Heesch, © 1997-1999