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

Method equal_range

Common/SuffixArray.h:54–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52 */
53 template <typename T>
54 std::pair<const_iterator, const_iterator> equal_range(
55 const T& seq) const
56 {
57 assert(!m_dirty);
58 return std::equal_range(m_data.begin(), m_data.end(),
59 key_type(&seq[0]), Compare());
60 }
61
62 size_t size() const { return m_data.size(); }
63 const_iterator begin() const { return m_data.begin(); }

Callers 4

addOverlapsSAFunction · 0.80
findOverlapsFunction · 0.80
alignReadsToGapFlanksFunction · 0.80
alignKmerMethod · 0.80

Calls 3

CompareClass · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected