mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
9 lines
354 B
Plaintext
9 lines
354 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":"array: 1,3"}]
|
|
}
|