mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
10 lines
390 B
Plaintext
10 lines
390 B
Plaintext
{
|
|
"name": "array_intersect",
|
|
"type": "function",
|
|
"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))", "returns":"true"}]
|
|
}
|