-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Implement SIP-42 - Support for binary integer literals #19405
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
docs/_docs/reference/other-new-features/binary-literals.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
layout: doc-page | ||
title: "Binary Integer Literals" | ||
nightlyOf: https://docs.scala-lang.org/scala3/reference/changed-features/binary-integer-literals.html | ||
--- | ||
|
||
A new syntax for integer literals has been added, it is now possible to do the following: | ||
```scala | ||
val bitmask = 0b0010_0000 // equivalent to 32, 0x20 | ||
``` | ||
|
||
Binary integer literals behave similarly to hex integer literals (`0x...`), for example: | ||
* Both `0b...` and `0B...` are allowed | ||
* `0b`/`0B` on its own is disallowed, possible alternatives: `0`, `0b0`, `0B0` | ||
* Only `0` and `1` are allowed after the b (`b`/`B`) | ||
* Underscores `_` are allowed anywhere between digits, and are ignored: `0b__1 == 0b1` | ||
|
||
|
||
Note: This change has been backported to Scala 2.13.13, it is therefore not technically a changed feature |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
object Test: | ||
val x = 0b1__0000_0000_0000_0000__0000_0000_0000_0000 // error: number too large | ||
val X = 0B1__0000_0000_0000_0000__0000_0000_0000_0000 // error: number too large | ||
val y = 0b1__0000_0000_0000_0000__0000_0000_0000_0000__0000_0000_0000_0000__0000_0000_0000_0000L // error: number too large | ||
val Y = 0B1__0000_0000_0000_0000__0000_0000_0000_0000__0000_0000_0000_0000__0000_0000_0000_0000L // error: number too large | ||
0b // error: invalid literal number | ||
0b2 // error: invalid literal number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
@main | ||
def Test = | ||
val kenobi = 0b1 | ||
|
||
assert(kenobi == 1) | ||
|
||
assert(0B0000 == 0) | ||
assert(0B0001 == 1) | ||
assert(0B0010 == 2) | ||
assert(0B0100 == 4) | ||
assert(0B1000 == 8) | ||
|
||
assert(0b0000 == 0) | ||
bishabosha marked this conversation as resolved.
Show resolved
Hide resolved
|
||
assert(0b0001 == 1) | ||
assert(0b0010 == 2) | ||
assert(0b0100 == 4) | ||
assert(0b1000 == 8) | ||
|
||
assert(0b0001_0000 == 16) | ||
assert(0b0010_0000 == 32) | ||
assert(0b0100_0000 == 64) | ||
assert(0b1000_0000 == 128) | ||
|
||
assert(0b0001_0000_0000 == 256) | ||
assert(0b0010_0000_0000 == 512) | ||
assert(0b0100_0000_0000 == 1024) | ||
assert(0b1000_0000_0000 == 2048) | ||
|
||
assert(0b0001_0000_0000_0000 == 4096) | ||
assert(0b0010_0000_0000_0000 == 8192) | ||
assert(0b0100_0000_0000_0000 == 16384) | ||
assert(0b1000_0000_0000_0000 == 32768) | ||
|
||
assert(0b0001__0000_0000_0000_0000 == 65536) | ||
assert(0b0010__0000_0000_0000_0000 == 131072) | ||
assert(0b0100__0000_0000_0000_0000 == 262144) | ||
assert(0b1000__0000_0000_0000_0000 == 524288) | ||
|
||
assert(0b0001_0000__0000_0000_0000_0000 == 1048576) | ||
assert(0b0010_0000__0000_0000_0000_0000 == 2097152) | ||
assert(0b0100_0000__0000_0000_0000_0000 == 4194304) | ||
assert(0b1000_0000__0000_0000_0000_0000 == 8388608) | ||
|
||
assert(0b0001_0000_0000__0000_0000_0000_0000 == 16777216) | ||
assert(0b0010_0000_0000__0000_0000_0000_0000 == 33554432) | ||
assert(0b0100_0000_0000__0000_0000_0000_0000 == 67108864) | ||
assert(0b1000_0000_0000__0000_0000_0000_0000 == 134217728) | ||
|
||
assert(0b0001_0000_0000_0000__0000_0000_0000_0000 == 268435456) | ||
assert(0b0010_0000_0000_0000__0000_0000_0000_0000 == 536870912) | ||
assert(0b0100_0000_0000_0000__0000_0000_0000_0000 == 1073741824) | ||
assert(0b1000_0000_0000_0000__0000_0000_0000_0000L == 2147483648L) | ||
|
||
assert(0b1000_0000_0000_0000__0000_0000_0000_0000 == -2147483648) // Signed ! | ||
assert(0b1111_1111_1111_1111__1111_1111_1111_1111 == -1) | ||
|
||
// Randomly generated using https://numbergenerator.org/random-32-bit-binary-number#!numbers=10&length=32&addfilters= | ||
// Converted to signed decimal using https://onlinetoolz.net/unsigned-signed#base=2&bits=32 | ||
assert(0b0110_1000_1100_0101_0010_1100_0100_0011 == 1757752387) | ||
assert(0b1111_0101_0100_1011_0101_1000_0011_0110 == -179611594) | ||
assert(0b0000_0011_0000_1010_1010_0011_0000_0000 == 51028736) | ||
assert(0b0101_0010_1111_1001_0100_0101_1101_1011 == 1392068059) | ||
assert(0b1001_0000_1111_1001_1011_1101_1100_1111 == -1862681137) | ||
|
||
assert(0B0000_0111_1110_1100_0111_1100_1000_0010 == 132938882) | ||
assert(0B0000_1011_0111_1011_0001_1010_1010_1000 == 192617128) | ||
assert(0B1100_1100_1000_1010_1111_0111_0100_1101 == -863307955) | ||
assert(0B1000_0000_0001_0010_0001_1001_0101_1110 == -2146297506) | ||
assert(0B1110_0000_0110_1100_0111_0110_1100_1111 == -529762609) | ||
|
||
assert(0b0010_1001_0101_1001__1010_0100_1000_1010__1001_1000_0011_0111__1100_1011_0111_0101L == 2979593543648529269L) | ||
assert(0b1101_1110_0100_1000__0010_1101_1010_0010__0111_1000_1111_1001__1010_1001_0101_1000L == -2429641823128802984L) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.