mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
9 lines
377 B
Plaintext
9 lines
377 B
Plaintext
{
|
|
"name": "array_remove_all",
|
|
"type": "function",
|
|
"description": "Returns an array with all the entries of the given value removed.",
|
|
"arguments": [ {"arg":"array","description":"an array"},
|
|
{"arg":"value","description":"the value to add"}],
|
|
"examples": [ { "expression":"array_remove_all(array('a','b','c','b'),'b')", "returns":"array: 'a','c'"}]
|
|
}
|