41 #ifndef PB_DS_EQ_BY_LESS_HPP
42 #define PB_DS_EQ_BY_LESS_HPP
55 template<
typename Key,
class Cmp_Fn>
61 const bool l = Cmp_Fn::operator()(r_lhs, r_rhs);
62 const bool g = Cmp_Fn::operator()(r_rhs, r_lhs);
69 #endif // #ifndef PB_DS_EQ_BY_LESS_HPP
bool operator()(const Key &r_lhs, const Key &r_rhs) const
Definition: eq_by_less.hpp:59
Equivalence function.
Definition: eq_by_less.hpp:56