Struct greater_equal
boost::log::greater_equal — Greater or equal predicate.
Synopsis
struct greater_equal {
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
greater_equal public member functions
- <
template<typenameT,typenameU>
booloperator()(Tconst&left,Uconst&right)const;
>
greater_equal 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&);
>