Ilya Danilov
Ilya Danilov
Char should probably be mapped to a json string with singular code point?
Valheim Plus allows to modify experience gains for many skills. Fishing, however, is not one of them. It would be great to fill this void.
fs2 version 3.10.2 this code does not terminate: ```scala Stream.eval(IO.canceled).prefetch.compile.drain ``` expected behavior: prefetch should not change execution semantics, at least not so much as to prevent termination
fs2 version 3.10.2 this codes prints `Succeeded` ```scala Stream .eval(IO.canceled) .parEvalMap(2)(_ => IO.unit) .onFinalizeCase(c => IO.delay(println(c))) .compile.drain ``` while using `evalMap` instead, it is properly `Canceled`: ```scala Stream .eval(IO.canceled) .evalMap(_...
fs2 version 3.10.2 this code does not terminate: ```scala Stream.unit // number of elements is irrelevant, as long as there are any; does not reproduce on Stream.empty .covary[IO] .parEvalMap(2)(_ =>...