Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct is_less

boost::algorithm::is_less — is_less functor

Synopsis

// In header: <boost/algorithm/string/compare.hpp>


struct is_less {

  // public member functions
  template<typename T1, typename T2> 
     (, ) ;
};

Description

Convenient version of standard std::less. Operation is templated, therefore it is not required to specify the exact types upon the construction

is_less public member functions

  1. template<typename T1, typename T2> 
       ( Arg1,  Arg2) ;
    Functor operation.

    Compare two operands using > operator


PrevUpHomeNext