QGIS/resources/function_help/json/array_intersect

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
483 B
Plaintext
Raw Permalink Normal View History

{
"name": "array_intersect",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Arrays"],
"description": "Returns TRUE if at least one element of array1 exists in array2.",
"arguments": [{
"arg": "array1",
"description": "an array"
}, {
"arg": "array2",
"description": "another array"
}],
"examples": [{
"expression": "array_intersect(array(1,2,3,4),array(4,0,2,5))",
2022-03-30 19:31:12 +02:00
"returns": "TRUE"
}],
"tags": ["array", "element", "exists", "intersection", "overlap"]
}