mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
22 lines
392 B
Plaintext
22 lines
392 B
Plaintext
{
|
|
"name": "/",
|
|
"type": "operator",
|
|
"groups": ["Operators"],
|
|
"description": "Division of two values",
|
|
"arguments": [{
|
|
"arg": "a",
|
|
"description": "value"
|
|
}, {
|
|
"arg": "b",
|
|
"description": "value"
|
|
}],
|
|
"examples": [{
|
|
"expression": "5 / 4",
|
|
"returns": "1.25"
|
|
}, {
|
|
"expression": "5 / NULL",
|
|
"returns": "NULL"
|
|
}],
|
|
"tags": ["division", "values"]
|
|
}
|