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

Function Set_New

src/datatypes/set.c:9–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7#include "set.h"
8
9set *Set_New(void) {
10 return raxNew();
11}
12
13bool Set_Contains(set *s, SIValue v) {
14 unsigned long long const hash = SIValue_HashCode(v);

Callers 2

Distinct_CloneFunction · 0.85
test_setFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_setFunction · 0.68