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

Function HashTableInitIterator

src/util/dict.c:741–749  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

739}
740
741void HashTableInitIterator(dictIterator *iter, dict *d)
742{
743 iter->d = d;
744 iter->table = 0;
745 iter->index = -1;
746 iter->safe = 0;
747 iter->entry = NULL;
748 iter->nextEntry = NULL;
749}
750
751void HashTableInitSafeIterator(dictIterator *iter, dict *d)
752{

Callers 2

HashTableGetIteratorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected