LeeTibbert
LeeTibbert
@armanbilge Thought I would ask your opinion, since you created `SplittableRandom.scala`. This is meant to be a two minute question not a days long interruption. Currently the `SplittableRandom` class extends...
@ekrich > I guess this would be of interest Thank you for the heads-up. I just saw sjrd's mention is another topic. I'll have to check that out. I suspect...
Fixed by merged PR #4267, which was the culmination of this discussion. Hey, I/we got it done in less than a year.
mio-19 Thank you for the report Scala Native supports Unicode up to a certain Unicode version. I think there is some code in `java.lang.Character.scala` which states which. Updating supported Unicode...
If you absolutely need the latest Unicode to get the latest emoji, symbol, or alphabet, there is some `International Components for Unicode (ICU)` around. I seem to remember that it...
> pretty big job Understatement...
``` /* val expectedWindows = Arrays.asList( ju.List.of(1, 2, 3), ju.List.of(4, 5, 6), ju.List.of(7, 8, 9) ) */ val expectedWindows = Arrays.asList( Arrays.asList(1, 2, 3), Arrays.asList(4, 5, 6), Arrays.asList(7, 8, 9)...
Eric, Thank you for your suggestions. Hope you are enjoying the California lifestyle & livin' the dream. I have some ideas for `List.of()` . It might even lead to a...
I was looking at some of the code in javalib `Arrays`, `asList()` in particular. That code was ported from Scala.js. I may borrow heavily from that, adding my own bugs...
Update: PR #4277 Tests which exercised negative zeros ~~tripped-over~~ independently re-discovered this behavior. The tests work on JVM & SN in DEBUG mode. They fail when build for releaseFast. My...