Swift - Bitwise NOT operator
The Bitwise NOT operator (~) is an unary operator which takes a bit pattern and performs the logical NOT operation on each bit. It is used to invert all of the bits of the operand. It is interesting to note that for any integer x, ~x is the same as -(x + 1).
Bit | ~ Bit |
---|---|
0 | 1 |
1 | 0 |
The example below describes how bitwise NOT operator works:
528 -> 00000000000000000000001000010000 (in binary) ---------------------------------- -529 <- 11111111111111111111110111101111 (in binary)
The code of using Bitwise NOT operator (~) is given below:
var x = 528 //Bitwise NOT operation var z = ~x //Displaying the result print("x = \(x)") print("z = \(z)")
The output of the above code will be:
x = 528 z = -529
❮ Swift - Operators