Name

less class template — Binary functional to compare for less-than

Synopsis

template <typename T>
struct less : binary_function<T, T, bool> {
  bool operator(  )(const T& x, const T& y) const;
};

The less class template is a binary functional in which operator( ) returns x < y.