Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct is_not_greater

boost::algorithm::is_not_greater — is_not_greater functor

Synopsis

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


struct is_not_greater {

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

Description

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

is_not_greater public member functions

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

    Compare two operands using > operator


PrevUpHomeNext