mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
19 lines
346 B
Plaintext
19 lines
346 B
Plaintext
{
|
|
"name": "NOT",
|
|
"type": "operator",
|
|
"groups": ["Operators"],
|
|
"description": "Negates a condition.",
|
|
"arguments": [{
|
|
"arg": "a",
|
|
"description": "condition"
|
|
}],
|
|
"examples": [{
|
|
"expression": "NOT 1",
|
|
"returns": "FALSE"
|
|
}, {
|
|
"expression": "NOT 0",
|
|
"returns": "TRUE"
|
|
}],
|
|
"tags": ["negates", "condition"]
|
|
}
|