MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / HashTableEmpty

Function HashTableEmpty

src/util/dict.c:1128–1133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1126}
1127
1128void HashTableEmpty(dict *d, void(callback)(dict*)) {
1129 _dictClear(d,0,callback);
1130 _dictClear(d,1,callback);
1131 d->rehashidx = -1;
1132 d->pauserehash = 0;
1133}
1134
1135void HashTableSetResizeEnabled(HashTableResizeEnable enable) {
1136 dict_can_resize = enable;

Callers 3

MergeConsumeFunction · 0.85
UpdateConsumeFunction · 0.85
UpdateResetFunction · 0.85

Calls 1

_dictClearFunction · 0.85

Tested by

no test coverage detected