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