BitLength[n] gives the number of binary bits necessary to represent the integer n.
BitNot
(Built-in Mathematica Symbol) BitNot[n] gives the bitwise NOT of the integer n.
BitOr
(Built-in Mathematica Symbol) BitOr[n_1, n_2, ...] gives the bitwise OR of the integers n_i.
BitSet
(Built-in Mathematica Symbol) BitSet[n, k] sets to 1 the bit corresponding to the coefficient of 2^k in the integer n.
BitShiftLeft[n, k] shifts the binary bits in the integer n to the left by k places, padding with zeros on the right.BitShiftLeft[n] shifts one bit to the left.
BitShiftRight[n, k] shifts the binary bits in the integer n to the right by k places, dropping bits that are shifted past the unit's position on the right. BitShiftRight[n] ...
BitXor
(Built-in Mathematica Symbol) BitXor[n_1, n_2, ...] gives the bitwise XOR of the integers n_i.
Black
(Built-in Mathematica Symbol) Black represents the color black in graphics or style specifications.
Blank
(Built-in Mathematica Symbol) _or Blank[] is a pattern object that can stand for any Mathematica expression. _h or Blank[h] can stand for any expression with head h.
___(three _characters) or BlankNullSequence[] is a pattern object that can stand for any sequence of zero or more Mathematica expressions. ___h or BlankNullSequence[h] can ...