Struct less
boost::log::less — Less predicate.
Synopsis
struct less {
typedef bool result_type;
template<typename T, typename U> bool operator()(T const &, U const &) const;
template<typename T, typename U>
static bool op(T const &, U const &, mpl::false_ const &);
template<typename T, typename U>
static bool op(T const &, U const &, mpl::true_ const &);
};
Description
less public member functions
- <
template<typenameT,typenameU>
booloperator()(Tconst&left,Uconst&right)const;
>
less private static functions
- <
template<typenameT,typenameU>
staticboolop(Tconst&left,Uconst&right,mpl::false_const&);
>
- <
template<typenameT,typenameU>
staticboolop(Tconst&left,Uconst&right,mpl::true_const&);
>