mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
16 lines
381 B
Plaintext
16 lines
381 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 ]"
|
|
}],
|
|
"tags": ["array", "reversed", "order"]
|
|
}
|