Name

Operators - The relational operators used in the Standard Template Library (STL).


Library

libstdcpp.lib


Synopsis

template 
inline bool operator!=(const T1& x, const T2& y) {
    return !(x == y);
}

template 
inline bool operator>(const T1& x, const T2& y) {
    return y < x;
}

template 
inline bool operator<=(const T1& x, const T2& y) {
    return !(y < x);
}

template 
inline bool operator>=(const T1& x, const T2& y) {
    return !(x < y);
}

Detailed Description

Click here for more details.


Limitation

None


Feedback

For additional information or queries on this page send feedback.


© 2008 Nokia Corporation. All rights reserved. This documentation can be used in the connection with this Product to help and support the user.

Top