Valinc

From WikiManual
Revision as of 03:22, 3 May 2007 by Endy (talk | contribs) (Reverted edit of Wz5T3f, changed back to last version by Ollj)
Jump to: navigation, search

Increment Bit Value Operator UNARY

Bitwise Command:

~ Complement
& AND
| OR
^ XOR
++ increment stack value
-- deincrement stack value
- negate stack value
<< bit shift left
>> bit shift right

Taking the top value as a series of bits, ++ adds one to the value. If this causes an overflow, the overflowing digits are lost.