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

Function SIValue_IsTrue

src/value.c:225–228  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223}
224
225inline bool SIValue_IsTrue(SIValue v) {
226 ASSERT(SI_TYPE(v) == T_BOOL && "SIValue_IsTrue: Expected boolean");
227 return v.longval;
228}
229
230inline bool SIValue_IsNullPtr(SIValue *v) {
231 return v == NULL || v->type == T_NULL;

Callers 9

_FilterTree_Compact_AndFunction · 0.85
_FilterTree_Compact_OrFunction · 0.85
_FilterTree_Compact_XOrFunction · 0.85
AR_SORTFunction · 0.85
AR_INSERTFunction · 0.85
AR_INSERTLISTELEMENTSFunction · 0.85
AR_TOINTEGERFunction · 0.85
_removeTrueFilterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected