mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
16 lines
346 B
Plaintext
16 lines
346 B
Plaintext
{
|
|
"name": "map_avals",
|
|
"type": "function",
|
|
"groups": ["Maps"],
|
|
"description": "Returns all the values of a map as an array.",
|
|
"arguments": [{
|
|
"arg": "map",
|
|
"description": "a map"
|
|
}],
|
|
"examples": [{
|
|
"expression": "map_avals(map('1','one','2','two'))",
|
|
"returns": "[ 'one', 'two' ]"
|
|
}],
|
|
"tags": ["array", "map"]
|
|
}
|