QGIS/resources/function_help/json/array_remove_all
2020-07-02 15:03:16 +10:00

10 lines
403 B
Plaintext

{
"name": "array_remove_all",
"type": "function",
"groups": ["Arrays"],
"description": "Returns an array with all the entries of the given value removed.",
"arguments": [ {"arg":"array","description":"an array"},
{"arg":"value","description":"the values to remove"}],
"examples": [ { "expression":"array_remove_all(array('a','b','c','b'),'b')", "returns":"[ 'a', 'c' ]"}]
}