Add the object with the specified index to this set. */
| 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) |
no test coverage detected