mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -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"}
|
|
]
|
|
}
|