r.ceil(number) → number
number.ceil() → number
Rounds the given value up, returning the smallest integer 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);
// Result:
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);
// Result:
-12.0
Example: Return Iron Man’s weight, rounded up with ceil
.
r.table("superheroes").get("ironman").g("weight").ceil().run(conn);
Couldn't find what you were looking for?
Contribute: edit this page or open an issue