PrevUpHomeNext

Struct less

boost::text::less

Synopsis

// In header: <boost/text/trie_fwd.hpp>


struct less {

  // public member functions
  template<typename T> bool operator()(T const &, T const &) const;
};

Description

A statically polymorphic less-than compariason object type. This is only necessary for pre-C++14 portablility.

less public member functions

  1. template<typename T> bool operator()(T const & lhs, T const & rhs) const;

PrevUpHomeNext