mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
14 lines
363 B
Plaintext
14 lines
363 B
Plaintext
{
|
|
"name": "+",
|
|
"type": "operator",
|
|
"description": "Addition of two values. If one of the values is NULL the result will be NULL.",
|
|
"arguments": [
|
|
{ "arg": "a", "description": "value" },
|
|
{ "arg": "b", "description": "value" }
|
|
],
|
|
"examples": [
|
|
{ "expression":"5 + 4", "returns":"9"},
|
|
{ "expression":"5 + NULL", "returns":"NULL"}
|
|
]
|
|
}
|