2022-03-19 09:00:56 +01:00

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"]
}