QGIS/resources/function_help/json/array_remove_at
2018-08-24 14:04:27 +02:00

9 lines
352 B
Plaintext

{
"name": "array_remove_at",
"type": "function",
"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 ]"}]
}