| 749 | } |
| 750 | |
| 751 | void HashTableInitSafeIterator(dictIterator *iter, dict *d) |
| 752 | { |
| 753 | HashTableInitIterator(iter, d); |
| 754 | iter->safe = 1; |
| 755 | } |
| 756 | |
| 757 | void HashTableResetIterator(dictIterator *iter) |
| 758 | { |
nothing calls this directly
no test coverage detected