mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
10 lines
381 B
Plaintext
10 lines
381 B
Plaintext
{
|
|
"name": "array_count",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"description": "Counts the number of occurrences of a given value in an array.",
|
|
"arguments": [ {"arg":"array","description":"an array"},
|
|
{"arg":"value","description":"the value to count"}],
|
|
"examples": [ { "expression":"array_count(array('a', 'b', 'c', 'b'), 'b')", "returns":"2"}]
|
|
}
|