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

Function AR_EXP_NewConstOperandNode

src/arithmetic/arithmetic_expression.c:252–256  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250}
251
252AR_ExpNode *AR_EXP_NewConstOperandNode(SIValue constant) {
253 AR_ExpNode *node = _AR_EXP_InitializeOperand(AR_EXP_CONSTANT);
254 node->operand.constant = constant;
255 return node;
256}
257
258AR_ExpNode *AR_EXP_NewParameterOperandNode
259(

Calls 1