File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -600,6 +600,8 @@ Currently, the 3 number types cannot be mixed.
600600| Bitwise And | x & y | int, uint |
601601| Bitwise Or | x \| y | int, uint |
602602| Bitwise Xor | x ^ y | int, uint |
603+ | Bitwise Right Shift | x >> y | uint |
604+ | Bitwise Left Shift | x << y | uint |
603605
604606Hexadecimal and binary floating-point literals are also supported.
605607
@@ -1173,6 +1175,8 @@ Currently, the 3 number types cannot be mixed.
11731175| Bitwise And | (& x y) | int, uint |
11741176| Bitwise Or | (\| x y) | int, uint |
11751177| Bitwise Xor | (^ x y) | int, uint |
1178+ | Bitwise Right Shift | (>> x y) | uint |
1179+ | Bitwise Left Shift | (<< x y) | uint |
11761180
11771181Hexadecimal and binary floating-point literals are also supported.
11781182
You can’t perform that action at this time.
0 commit comments