Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

ceil function:

  • Can also be called as ceiling

If the argument is numeric, return it's ceiling.

Examples:

  • running: (ceil 10.3) will give: 11

  • running: (ceil -10.3) will give: -10

  • running: (ceil -10) will give: -10

  • running: (ceil -10.5) will give: -10

  • running: (ceil 10.99) will give: 11

  • running: (ceil [0]) will return nothing