Stefan Zeiger

Results 101 comments of Stefan Zeiger

Some more details please. Which branch/version of the examples? Did you modify anything after checking out? Are you building with sbt or some other build tool or IDE?

I'd rather apply sortBy calls for the individual keys in reverse order so you don't have to construct internal objects like Ordered manually and step outside of the type-safe lifted...

I would expect this kind of code never to come out of patmat rather than relying on bytecode optimizations.

You'd need something like `newLL` to wrap `=> LazyList[A]` into `LazyList[A]`. LazyList (unlike Stream) is lazy enough that it should be possible to write such a method. But it wouldn't...

To add to this problem: Reconnecting to a devbox (using the already running syncer, e.g. after a network outage) that was started with --new-instance will shut down the current instance...

> > If two separate compilation units both define (foo = "bar"), will both have their own trait Labelled$foo defined or will generation happen once in a global place (e.g....

As an aside, I'm actually skeptical about using records for database joins nowadays. It's simple in relational algebra but not a good fit for a language like Scala. First you...

I wonder why the `MODULE$` fields aren't `static final` in the first place. Shouldn't it be OK to make it final when it's initialized in a static initializer?

Simply adding support for `--system` without touching any of the other stuff looks straight-forward. ``` $ /Users/stefan.zeiger/code/scala/build/quick/bin/scalac -target 11 --system /Users/stefan.zeiger/.sdkman/candidates/java/11-zulu-local Main.scala ``` It still ignores module access but now...