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

Function HashTableFetchValue

src/util/dict.c:611–616  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

609}
610
611void *HashTableFetchValue(dict *d, const void *key) {
612 dictEntry *he;
613
614 he = HashTableFind(d,key);
615 return he ? HashTableGetVal(he) : NULL;
616}
617
618/* Find an element from the table, also get the plink of the entry. The entry
619 * is returned if the element is found, and the user should later call

Callers

nothing calls this directly

Calls 2

HashTableFindFunction · 0.85
HashTableGetValFunction · 0.85

Tested by

no test coverage detected