mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
21 lines
536 B
Plaintext
21 lines
536 B
Plaintext
{
|
|
"name": "array_sort",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"description": "Returns the provided array with its elements sorted.",
|
|
"arguments": [{
|
|
"arg": "array",
|
|
"description": "an array"
|
|
}, {
|
|
"arg": "ascending",
|
|
"optional": true,
|
|
"default": "true",
|
|
"description": "set this parameter to false to sort the array in descending order"
|
|
}],
|
|
"examples": [{
|
|
"expression": "array_sort(array(3,2,1))",
|
|
"returns": "[ 1, 2, 3 ]"
|
|
}],
|
|
"tags": ["sorted", "array", "elements", "provided"]
|
|
}
|