Sunday, December 5, 2010

The 'less' Functor

The following is the declaration for the less functor:

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

No comments:

Post a Comment