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
list<number> list<int>
number int

Examples

Apply the ceil function to a list of numbers

> [1.5 2.3 -3.1] | math ceil
╭───┬────╮
 0   2 
 1   3 
 2  -3 
╰───┴────╯