shift Full Description |
|
Syntaxnumeric-expression shift numeric-expression Purpose The result of a
As bits are shifted, the positions which are no longer occupied are filled with zeros. Thus, shifting a bit sequence by 32 or more in either direction will result in a sequence of all zeros. Bits which go "off the end" are discarded. The result is always a sequence of 32 bits. This line causes the bit that is second from the bottom to be set to 1, while the rest are set to 0:
set c to 1 shift 1 |