MCPcopy Create free account
hub / github.com/BirolLab/abyss / Compare

Class Compare

Common/SuffixArray.h:68–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66 private:
67 /** Comparison functor. */
68 struct Compare {
69 bool operator()(const value_type& a, const key_type& b) const
70 {
71 return a.first < b;
72 }
73
74 bool operator()(const key_type& a, const value_type& b) const
75 {
76 return a < b.first;
77 }
78 };
79
80 unsigned m_minOverlap;
81 bool m_dirty;

Callers 1

equal_rangeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected