mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
22 lines
453 B
Plaintext
22 lines
453 B
Plaintext
{
|
|
"name": "IN",
|
|
"type": "operator",
|
|
"groups": ["Operators"],
|
|
"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"
|
|
}],
|
|
"tags": ["list", "contained", "found"]
|
|
}
|