|
<< Index >> |
FutureBasic |
xor | operator | |
|
result = exprA
{ ^^
} Bit value in expr | Bit value in expr | Bit value in result |
0 | 0 | 0 |
1 | 0 | 1 |
0 | 1 | 1 |
1 | 1 | 0 |
pattern = pattern xor bit (7)
pattern
from 0 to 1 or from 1 to 0, and leaves all of pattern's
other bits alone.