QGIS/resources/function_help/json/array_intersect

10 lines
390 B
Plaintext
Raw Normal View History

{
"name": "array_intersect",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Arrays"],
2018-05-14 15:13:22 +02:00
"description": "Returns true if at least one element of array1 exists in array2.",
"arguments": [ {"arg":"array1","description":"an array"},
2016-10-01 17:13:02 +02:00
{"arg":"array2","description":"another array"}],
"examples": [ { "expression":"array_intersect(array(1,2,3,4),array(4,0,2,5))", "returns":"true"}]
}