## Prefix ### ! [ Precedence 250 ]
Overload | Description |
---|---|
! (n: Int) -> Int
|
Negates the bits of n
|
! (n &Int) -> Int
|
|
! (n @Int) -> Int
|
Overload | Description |
---|---|
(a: Int) & (b: Int) -> Int
|
Calculates the bitwise operation a ∧ b
|
Overload | Description |
---|---|
(a: Int) | (b: Int) -> Int
|
Calculates the bitwise operation a ∨ b
|
Overload | Description |
---|---|
(a: Int) >> (b: Int) -> Int
|
Calculates a with b bits shifted to the right
|
Overload | Description |
---|---|
(a: Int) << (b: Int) -> Int
|
Calculates a with b bits shifted to the left
|
Overload | Description |
---|---|
(a: Int) ^ (b: Int) -> Int
|
Calculates the bitwise operation a XOR b
|