mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
16 lines
388 B
Plaintext
16 lines
388 B
Plaintext
{
|
|
"name": "array_distinct",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"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 ]"
|
|
}],
|
|
"tags": ["array", "containing", "distinct"]
|
|
}
|