Initializing help system before first use

bitset

bitset


Purpose
Set bits (bitwise OR).
Synopsis
function bitset(i:integer, j:integer):integer
Arguments
Integer to be set
Value to set
Return value
Bitwise OR of the operands.
Example
In the following, i takes the value 13, j takes the value 141, and k takes the value 15:
i:= bitset(12, 5)
j:= bitset(13, 128)
k:= bitset(13, 10)
Further information
This function computes the bitwise OR of its operands.
Related topics