mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
19 lines
348 B
Plaintext
19 lines
348 B
Plaintext
{
|
|
"name": "ceil",
|
|
"type": "function",
|
|
"groups": ["Math"],
|
|
"description": "Rounds a number upwards.",
|
|
"arguments": [{
|
|
"arg": "value",
|
|
"description": "a number"
|
|
}],
|
|
"examples": [{
|
|
"expression": "ceil(4.9)",
|
|
"returns": "5"
|
|
}, {
|
|
"expression": "ceil(-4.9)",
|
|
"returns": "-4"
|
|
}],
|
|
"tags": ["rounds", "number"]
|
|
}
|