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