| 302 | const_iterator end() const { return const_iterator(this, _buckets.size()); } |
| 303 | const_iterator cbegin() const { return const_iterator(this, 0); } |
| 304 | const_iterator cend() const { |
| 305 | return const_iterator(this, _buckets.size()); |
| 306 | } |
| 307 | |
| 308 | static bool NeedsRehash(fl::size size, fl::size bucket_size, fl::size tombstones, |
| 309 | u8 load_factor) { |
nothing calls this directly
no test coverage detected