math ceil for math

Returns the ceil of a number (smallest integer greater than or equal to that number).

Signature

> math ceil

Examples

Apply the ceil function to a list of numbers

> [1.5 2.3 -3.1] | math ceil
╭───┬────╮
│ 02 │
│ 13 │
│ 2-3 │
╰───┴────╯