Object Pascal - Bitwise operators
We have more of the bitwise operators, using the bitwise operator we can set or determine the specific bit in whole numbers.Object Pascal
Other pieces of example codes:631 xor ($F0 xor k)
(i and 4)
(32 shr 2)
not 2
64 or (i or k)
128 shl (j shl(3 + i))
Bitwise operators in another programming language: