Wrapper to call private methods on HashTable TODO: understand google testing, there must be a more natural way to do this
| 155 | // Wrapper to call private methods on HashTable |
| 156 | // TODO: understand google testing, there must be a more natural way to do this |
| 157 | Status ResizeTable( |
| 158 | HashTable* table, int64_t new_size, HashTableCtx* ht_ctx, bool* success) { |
| 159 | return table->ResizeBuckets(new_size, ht_ctx, success); |
| 160 | } |
| 161 | |
| 162 | // Do a full table scan on table. All values should be between [min,max). If |
| 163 | // all_unique, then each key(int value) should only appear once. Results are |
nothing calls this directly
no test coverage detected