MCPcopy Create free account
hub / github.com/catboost/catboost / CompareFeaturesByPriority

Class CompareFeaturesByPriority

library/cpp/regex/pire/pire/re_lexer.cpp:84–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82
83namespace {
84 class CompareFeaturesByPriority: public ybinary_function<const Feature::Ptr&, const Feature::Ptr&, bool> {
85 public:
86 bool operator()(const Feature::Ptr& a, const Feature::Ptr& b) const
87 {
88 return a->Priority() < b->Priority();
89 }
90 };
91}
92
93Lexer& Lexer::AddFeature(Feature::Ptr& feature)

Callers 1

re_lexer.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected