Performs an inclusive OR.
Elemental function
Same as I.
The result has the value obtained by combining I and J bit-by-bit according to the following truth table:
ith bit ith bit ith bit of I of J of IOR(I,J) ---------------------------- 1 1 1 1 0 1 0 1 1 0 0 0
The bits are numbered 0 to BIT_SIZE(I)-1, from right to left.
IOR (1, 3) has the value 3. See Integer bit model.