mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
28 lines
543 B
Plaintext
28 lines
543 B
Plaintext
{
|
|
"name": "%",
|
|
"type": "operator",
|
|
"groups": ["Operators"],
|
|
"description": "Remainder of division. Takes the sign of the dividend.",
|
|
"arguments": [{
|
|
"arg": "a",
|
|
"description": "value"
|
|
}, {
|
|
"arg": "b",
|
|
"description": "value"
|
|
}],
|
|
"examples": [{
|
|
"expression": "9 % 2",
|
|
"returns": "1"
|
|
}, {
|
|
"expression": "9 % -2",
|
|
"returns": "1"
|
|
}, {
|
|
"expression": "-9 % 2",
|
|
"returns": "-1"
|
|
}, {
|
|
"expression": "5 % NULL",
|
|
"returns": "NULL"
|
|
}],
|
|
"tags": ["division", "remainder", "modulo"]
|
|
}
|