| 70 | } |
| 71 | |
| 72 | void swap(darray& other) { |
| 73 | std::swap(other.m_positions, m_positions); |
| 74 | m_block_inventory.swap(other.m_block_inventory); |
| 75 | m_subblock_inventory.swap(other.m_subblock_inventory); |
| 76 | m_overflow_positions.swap(other.m_overflow_positions); |
| 77 | } |
| 78 | |
| 79 | inline uint64_t select(bit_vector const& bv, uint64_t idx) const |
| 80 | { |