mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-08 00:05:09 -04:00
19 lines
441 B
Plaintext
19 lines
441 B
Plaintext
{
|
|
"name": "array_remove_at",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"description": "Returns an array with the given index removed.",
|
|
"arguments": [{
|
|
"arg": "array",
|
|
"description": "an array"
|
|
}, {
|
|
"arg": "pos",
|
|
"description": "the position to remove (0 based)"
|
|
}],
|
|
"examples": [{
|
|
"expression": "array_remove_at(array(1,2,3),1)",
|
|
"returns": "[ 1, 3 ]"
|
|
}],
|
|
"tags": ["array", "removed", "index"]
|
|
}
|