marcinzh
marcinzh
Hi @jvican, I thought this might be related: ```scala scala.io.StdIn.readLine() ``` When run with bloop, it never completes. Just keeps swallowing input forever, including newlines.
I have the same error.
Hello! And welcome to the community of Scala programmers! This is an initial, quick response, before I get deeper into the problem. ### Some changes to the code: - I...
Hello @ultralightspeed! I created a new discussion where I answered your question: https://github.com/marcinzh/turbolift/discussions/53 @ymdryo: There is a part in the above that you might find interesting: ``` data.data.Stream.uncons s =...
Hello and welcome! I just checked out your benchmark project and have a suggestion. Instead of using `loops.map(...).traverseVoid`, I recommend `loops.foreachEff(...)`. It produces the same result but avoids creating an...
There is some improvement in v110. I removed the overloading. Types inferred by IntelliJ are now less wacky (`Either[Nothing]` is wild), but still inaccurate. I ran out of ideas and...