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

Function SIValue_IsFalse

src/value.c:220–223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218}
219
220inline bool SIValue_IsFalse(SIValue v) {
221 ASSERT(SI_TYPE(v) == T_BOOL && "SIValue_IsFalse: Expected boolean");
222 return !v.longval;
223}
224
225inline bool SIValue_IsTrue(SIValue v) {
226 ASSERT(SI_TYPE(v) == T_BOOL && "SIValue_IsTrue: Expected boolean");

Callers 3

FilterTree_applyFiltersFunction · 0.85
_FilterTree_Compact_AndFunction · 0.85
AR_CASEWHENFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected