mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
24 lines
546 B
Plaintext
24 lines
546 B
Plaintext
{
|
|
"name": "array_cat",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"description": "Returns an array containing all the given arrays concatenated.",
|
|
"variableLenArguments": true,
|
|
"arguments": [{
|
|
"arg": "array1",
|
|
"syntaxOnly": true
|
|
}, {
|
|
"arg": "array2",
|
|
"syntaxOnly": true
|
|
}, {
|
|
"arg": "array",
|
|
"descOnly": true,
|
|
"description": "an array"
|
|
}],
|
|
"examples": [{
|
|
"expression": "array_cat(array(1,2),array(2,3))",
|
|
"returns": "[ 1, 2, 2, 3 ]"
|
|
}],
|
|
"tags": ["concatenated", "arrays", "containing"]
|
|
}
|