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

Function HashTableElemCount

src/util/dict.c:152–157  ·  view source on GitHub ↗

returns number of elements in hash table

Source from the content-addressed store, hash-verified

150
151// returns number of elements in hash table
152unsigned long HashTableElemCount
153(
154 const dict *d
155) {
156 return d->ht_used[0] + d->ht_used[1];
157}
158
159/* Initialize the hash table */
160int _dictInit

Callers 5

MergeConsumeFunction · 0.85
UpdateConsumeFunction · 0.85
AggregateConsumeFunction · 0.85
AggregateResetFunction · 0.85
CommitUpdatesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected