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:

inputoutput
list<number>list<int>
numberint

Examples

Apply the ceil function to a list of numbers

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