r.floor(number) → number number.floor() → number
Rounds the given value down, returning the largest integer value less than or equal to the given value (the value’s floor).
Example: Return the floor of 12.345.
> r.floor(12.345).run(conn) 12.0
The floor
command can also be chained after an expression.
Example: Return the floor of -12.345.
> r.expr(-12.345).floor().run(conn) -13.0
Example: Return Iron Man’s weight, rounded down with floor
.
r.table('superheroes').get('ironman')['weight'].floor().run(conn)
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/floor/