mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
22 lines
463 B
Plaintext
22 lines
463 B
Plaintext
{
|
|
"name": "IN",
|
|
"type": "operator",
|
|
"groups": ["Operators"],
|
|
"description": "Returns TRUE 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": "TRUE"
|
|
}, {
|
|
"expression": "'A' IN ('C','B')",
|
|
"returns": "FALSE"
|
|
}],
|
|
"tags": ["list", "contained", "found"]
|
|
}
|