Returns true if the first argument is less than the second argument.
template <class T> struct less : binary_function<T,T,bool> { bool operator()(const T& x, const T& y) const; };
Returns true if x is less than y.