Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
346 B
Plaintext
Raw Permalink Normal View History

{
"name": "NOT",
"type": "operator",
"groups": ["Operators"],
"description": "Negates a condition.",
2022-01-13 08:56:17 -05:00
"arguments": [{
"arg": "a",
"description": "condition"
}],
"examples": [{
"expression": "NOT 1",
"returns": "FALSE"
2022-01-13 08:56:17 -05:00
}, {
"expression": "NOT 0",
"returns": "TRUE"
2022-01-13 08:56:17 -05:00
}],
"tags": ["negates", "condition"]
}