///////////// Constructors // /////////////
| 221 | // Constructors // |
| 222 | ////////////////// |
| 223 | BHashTable() noexcept : slots{}, count{ 0 }, max_hash_offset{ 0 } {} |
| 224 | |
| 225 | BHashTable(std::size_t capacity) noexcept : BHashTable() { |
| 226 | // Make sure the real capacity is a power of two >= 8. |