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

Method insert

Bloom/BloomFilter.h:84–88  ·  view source on GitHub ↗

Add the object with the specified index to this set. */

Source from the content-addressed store, hash-verified

82
83 /** Add the object with the specified index to this set. */
84 void insert(size_t i)
85 {
86 assert(i < m_size);
87 m_array[i / 8] |= 1 << (7 - i % 8);
88 }
89
90 /** Add the object to this set. */
91 void insert(const Bloom::key_type& key)

Callers 7

tree_edgeMethod · 0.45
graphFunction · 0.45
loadSeqFunction · 0.45
addKmersToBloomFunction · 0.45
outputContigFunction · 0.45
processReadFunction · 0.45
loadSeqFunction · 0.45

Calls 1

hashFunction · 0.85

Tested by

no test coverage detected