| 1126 | } |
| 1127 | |
| 1128 | void 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 | |
| 1135 | void HashTableSetResizeEnabled(HashTableResizeEnable enable) { |
| 1136 | dict_can_resize = enable; |
no test coverage detected