`IO.monad<Error>().fx.monad {` don’t use thi...
# arrow
p
IO.monad<Error>().fx.monad {
don’t use this, use just
IO.fx<MyError> { ... }
h
For future generations:
Copy code
IO.fx<Error, Unit> {
This helped. Why Kotlin type inference couldn’t find that method return type right above?
👍 1
Thank you