mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
9 lines
314 B
Plaintext
9 lines
314 B
Plaintext
{
|
|
"name": "array_reverse",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"description": "Returns the given array with array values in reversed order.",
|
|
"arguments": [ {"arg":"array","description":"an array"} ],
|
|
"examples": [ { "expression":"array_reverse(array(2,4,0,10))", "returns":"[ 10, 0, 4, 2 ]"}]
|
|
}
|