mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
25 lines
504 B
Plaintext
25 lines
504 B
Plaintext
{
|
|
"name": "IS NOT",
|
|
"type": "operator",
|
|
"groups": ["Operators"],
|
|
"description": "Returns TRUE if a is not the same as b.",
|
|
"arguments": [{
|
|
"arg": "a",
|
|
"description": "value"
|
|
}, {
|
|
"arg": "b",
|
|
"description": "value"
|
|
}],
|
|
"examples": [{
|
|
"expression": "'a' IS NOT 'b'",
|
|
"returns": "TRUE"
|
|
}, {
|
|
"expression": "'a' IS NOT 'a'",
|
|
"returns": "FALSE"
|
|
}, {
|
|
"expression": "4 IS NOT 2+2",
|
|
"returns": "FALSE"
|
|
}],
|
|
"tags": ["compare", "same", "different"]
|
|
}
|