Integer.bit_or
bit_orthat
Group: Bitwise
Documentation
Computes the bitwise or (disjunction) operation between this and that.
Bitwise or computes the logical disjunction of the pairs of corresponding bits in the operands.
Arguments
that
: The number to compute the bitwise disjunction with.
Examples
Computing the bitwise disjunction of 0b01101101 and 0b11110000.
0b01101101.bit_or 0b11110000