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

Function AR_ADD

src/arithmetic/numeric_funcs/numeric_funcs.c:23–25  ·  view source on GitHub ↗

The '+' operator is overloaded to perform string concatenation * as well as arithmetic addition. */

Source from the content-addressed store, hash-verified

21/* The '+' operator is overloaded to perform string concatenation
22 * as well as arithmetic addition. */
23SIValue AR_ADD(SIValue *argv, int argc, void *private_data) {
24 return SIValue_Add(argv[0], argv[1]);
25}
26
27/* returns the subtracting given values. */
28SIValue AR_SUB(SIValue *argv, int argc, void *private_data) {

Callers

nothing calls this directly

Calls 1

SIValue_AddFunction · 0.85

Tested by

no test coverage detected