139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
replacing the definition.
{band <numbers...>}
Bitwise AND. The result is -1 if no arguments are specified.
{bit <numbers...>}
The numbers are in range 0 to 31 and denote bit positions; the result is
a number with only those bits set.
{bnot <number>}
Bitwise complement.
{bor <numbers...>}
Bitwise OR. The result is 0 if no arguments are specified.
|
|
>
|
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
replacing the definition.
{band <numbers...>}
Bitwise AND. The result is -1 if no arguments are specified.
{bit <numbers...>}
The numbers are in range 0 to 31 and denote bit positions; the result is
a number with only those bits set. If there are any numbers out of range
0 to 31 then the numbers out of range are ignored.
{bnot <number>}
Bitwise complement.
{bor <numbers...>}
Bitwise OR. The result is 0 if no arguments are specified.
|