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