mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
19 lines
470 B
Plaintext
19 lines
470 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' ]"
|
|
}],
|
|
"tags": ["array", "entries", "removed"]
|
|
}
|