mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
14 lines
340 B
Plaintext
14 lines
340 B
Plaintext
|
{
|
||
|
"name": "IN",
|
||
|
"type": "operator",
|
||
|
"description": "Returns 1 if value is found within a list of values.",
|
||
|
"arguments": [
|
||
|
{"arg":"a","description":"value"},
|
||
|
{"arg":"b","description":"list of values"}
|
||
|
],
|
||
|
"examples": [
|
||
|
{ "expression":"'A' IN ('A','B')", "returns":"1"},
|
||
|
{ "expression":"'A' IN ('C','B')", "returns":"0"}
|
||
|
]
|
||
|
}
|