Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
366 B
Plaintext
Raw Permalink Normal View History

{
"name": "floor",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Math"],
"description": "Rounds a number downwards.",
2022-01-13 08:56:17 -05:00
"arguments": [{
"arg": "value",
"description": "a number"
}],
"examples": [{
"expression": "floor(4.9)",
"returns": "4"
}, {
"expression": "floor(-4.9)",
"returns": "-5"
}],
"tags": ["downwards", "rounds", "number"]
}