File tree Expand file tree Collapse file tree 3 files changed +21
-21
lines changed Expand file tree Collapse file tree 3 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 1
- let result = Int.bitwiseAnd(1, 2)
2
- let result = Int.bitwiseOr(1, 2)
3
- let result = Int.bitwiseXor(1, 2)
4
- let result = Int.shiftLeft(1, 2)
5
- let result = Int.shiftRightUnsigned(1, 2)
6
- let result = Int.shiftRight(1, 2)
7
- let result = Int.bitwiseNot(0)
1
+ let result1 = Int.bitwiseAnd(1, 2)
2
+ let result2 = Int.bitwiseOr(1, 2)
3
+ let result3 = Int.bitwiseXor(1, 2)
4
+ let result4 = Int.shiftLeft(1, 2)
5
+ let result5 = Int.shiftRightUnsigned(1, 2)
6
+ let result6 = Int.shiftRight(1, 2)
7
+ let result7 = Int.bitwiseNot(0)
8
8
Original file line number Diff line number Diff line change 1
- let result = Int .Bitwise .land (1 , 2 )
2
- let result = Int .Bitwise .lor (1 , 2 )
3
- let result = Int .Bitwise .lxor (1 , 2 )
4
- let result = Int .Bitwise .lsl (1 , 2 )
5
- let result = Int .Bitwise .lsr (1 , 2 )
6
- let result = Int .Bitwise .asr (1 , 2 )
7
- let result = Int .Bitwise .lnot (0 )
1
+ let result1 = Int .Bitwise .land (1 , 2 )
2
+ let result2 = Int .Bitwise .lor (1 , 2 )
3
+ let result3 = Int .Bitwise .lxor (1 , 2 )
4
+ let result4 = Int .Bitwise .lsl (1 , 2 )
5
+ let result5 = Int .Bitwise .lsr (1 , 2 )
6
+ let result6 = Int .Bitwise .asr (1 , 2 )
7
+ let result7 = Int .Bitwise .lnot (0 )
Original file line number Diff line number Diff line change 1
1
// This file is autogenerated so it can be type checked.
2
2
// It's the migrated version of src/migrate/StdlibMigration_Int.res.
3
- let result = Int .bitwiseAnd (1 , 2 )
4
- let result = Int .bitwiseOr (1 , 2 )
5
- let result = Int .bitwiseXor (1 , 2 )
6
- let result = Int .shiftLeft (1 , 2 )
7
- let result = Int .shiftRightUnsigned (1 , 2 )
8
- let result = Int .shiftRight (1 , 2 )
9
- let result = Int .bitwiseNot (0 )
3
+ let result1 = Int .bitwiseAnd (1 , 2 )
4
+ let result2 = Int .bitwiseOr (1 , 2 )
5
+ let result3 = Int .bitwiseXor (1 , 2 )
6
+ let result4 = Int .shiftLeft (1 , 2 )
7
+ let result5 = Int .shiftRightUnsigned (1 , 2 )
8
+ let result6 = Int .shiftRight (1 , 2 )
9
+ let result7 = Int .bitwiseNot (0 )
You can’t perform that action at this time.
0 commit comments