math ceil for math
Returns the ceil of a number (smallest integer greater than or equal to that number).
Signature
> math ceil {flags}
Input/output types:
| input | output |
|---|---|
| number | int |
| list<number> | list<int> |
| range | list<number> |
Examples
Apply the ceil function to a list of numbers
> [1.5 2.3 -3.1] | math ceil
╭───┬────╮
│ 0 │ 2 │
│ 1 │ 3 │
│ 2 │ -3 │
╰───┴────╯