ReQL command reference - RethinkDB
ReQL command: bit_or
Command syntax
r.bit_or(number) → number
r.bit_or(number[, number, ...]) → number
Description
A bitwise OR is a binary operation that takes two bit patterns of equal length and performs the logical inclusive OR operation on each pair of corresponding bits. The result in each position is 0 if both bits are 0, while otherwise the result is 1.
Example:
r.expr(5).bit_or(3).run(conn)
# Result:
7
Related commands
Get more help
Couldn't find what you were looking for?
- Ask a question on Stack Overflow
- Chat with us and our community on Slack
- Talk to the team on IRC on #rethinkdb@freenode.net — via Webchat
- Ping @rethinkdb on Twitter
- Post an issue on the documentation issue tracker on GitHub