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

Function SIArray_Append

src/datatypes/array.c:21–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19}
20
21void SIArray_Append(SIValue *siarray, SIValue value) {
22 // clone and persist incase of pointer values
23 SIValue clone = SI_CloneValue(value);
24 // append
25 array_append(siarray->array, clone);
26}
27
28SIValue SIArray_Get(SIValue siarray, uint32_t index) {
29 // check index

Callers 15

SIValue_ConcatListFunction · 0.85
_RdbLoadSIArrayFunction · 0.85
_RdbLoadSIArrayFunction · 0.85
_RdbLoadSIArrayFunction · 0.85
_RdbLoadSIArrayFunction · 0.85
_RdbLoadSIArrayFunction · 0.85
_RdbLoadSIArrayFunction · 0.85
_BulkInsert_ReadPropertyFunction · 0.85
match_regex_scan_cbFunction · 0.85
AR_SPLITFunction · 0.85
AGG_COLLECTFunction · 0.85

Calls 1

SI_CloneValueFunction · 0.85

Tested by 1

test_arrayFunction · 0.68