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