mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
19 lines
432 B
Plaintext
19 lines
432 B
Plaintext
{
|
|
"name": "array_append",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"description": "Returns an array with the given value added at the end.",
|
|
"arguments": [{
|
|
"arg": "array",
|
|
"description": "an array"
|
|
}, {
|
|
"arg": "value",
|
|
"description": "the value to add"
|
|
}],
|
|
"examples": [{
|
|
"expression": "array_append(array(1,2,3),4)",
|
|
"returns": "[ 1, 2, 3, 4 ]"
|
|
}],
|
|
"tags": ["array", "added", "end"]
|
|
}
|