ceil

ReQL command: ceil

Command syntax

r.ceil(number) → number
number.ceil() → number

Description

Rounds the given value up, returning the smallest integer value greater than or equal to the given value (the value’s ceiling).

Example: Return the ceiling of 12.345.

> r.ceil(12.345).run(conn)

13.0

The ceil command can also be chained after an expression.

Example: Return the ceiling of -12.345.

> r.expr(-12.345).ceil().run(conn)

-12.0

Example: Return Iron Man’s weight, rounded up with ceil.

r.table('superheroes').get('ironman')['weight'].ceil().run(conn)

Related commands

Get more help

Couldn't find what you were looking for?

© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/ruby/ceil/

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部