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

Function HashTableGetIterator

src/util/dict.c:767–772  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

765}
766
767dictIterator *HashTableGetIterator(dict *d)
768{
769 dictIterator *iter = malloc(sizeof(*iter));
770 HashTableInitIterator(iter, d);
771 return iter;
772}
773
774dictIterator *HashTableGetSafeIterator(dict *d) {
775 dictIterator *i = HashTableGetIterator(d);

Callers 4

HashTableGetSafeIteratorFunction · 0.85
ExecutionPlan_FreeFunction · 0.85
AggregateConsumeFunction · 0.85
CommitUpdatesFunction · 0.85

Calls 1

HashTableInitIteratorFunction · 0.85

Tested by

no test coverage detected