Bartłomiej Kozak
Bartłomiej Kozak
The [docs.tornadofx.io](https://docs.tornadofx.io) webpage does not work, so it's impossible to read the documentation. Temporary solution: use [web.archive.org](https://web.archive.org/web/20230201162633/https://docs.tornadofx.io/)
`Task(sth).map(throw Error())` doesn't lead to failing the Task, because `throw Error()` has `Nothing` type, so it has also lambda type. If such a check is possible, it should be included...
In default Scala 2, we have a way to alias types. This is great as a way to make code more readable, but if your type logically has a more...
`as` method should have by-name parameter, because `Task(...).map{ _ => ...}` cannot be always shorted to `Task(...).as{...}` due to the potential side effects
3 weeks ago #594 was merged due to the expired Redis cert. The new one was expected to expire 3650 days after, but the Redis tests started failing again, so...
SttpRestCallTest "too large binary request" is flaky. Fix made in https://github.com/UdashFramework/udash-core/pull/1313 is not valid, because the server behaves as espected. A solution should contain the client-side fix
# Intro Analyser requires implicit classes to extend `AnyVal` (in order to decrease memory overhead). ```scala implicit final class IntOps(i: Int) //compilation error: [AVS] Implicit classes should always extend AnyVal...