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

Function AR_EXP_IsConstant

src/arithmetic/arithmetic_expression.c:51–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49static void _AR_EXP_FreeOpInternals(AR_ExpNode *op_node);
50
51inline bool AR_EXP_IsConstant(const AR_ExpNode *exp) {
52 return exp->type == AR_EXP_OPERAND && exp->operand.type == AR_EXP_CONSTANT;
53}
54
55inline bool AR_EXP_IsVariadic(const AR_ExpNode *exp) {
56 return exp->type == AR_EXP_OPERAND && exp->operand.type == AR_EXP_VARIADIC;

Callers 7

_FilterTree_Compact_ExpFunction · 0.85
_FilterTree_Compact_PredFunction · 0.85
AR_EXP_IsAttributeFunction · 0.85
AR_EXP_ReduceToScalarFunction · 0.85
AR_EXP_CollectAttributesFunction · 0.85
AR_EXP_FreeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected