1
0
mirror of https://github.com/qgis/QGIS.git synced 2025-03-16 00:02:11 -04:00
2016-10-28 10:51:14 +07:00

10 lines
299 B
Plaintext

{
"name": "array_distinct",
"type": "function",
"description": "Returns an array containing distinct values of the given array.",
"arguments": [
{"arg":"array","description":"an array"}],
"examples": [ { "expression":"array_distinct(array(1,2,3,2,1))", "returns":"array: 1,2,3"}
]
}