Ilya Danilov

Results 5 issues of 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.

feature request

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

bug

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(_...

bug

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)(_ =>...

bug