Also, one thing I’ve noticed that this line `Eithe...
# arrow
s
Also, one thing I’ve noticed that this line
EitherT.monad<ForIO, DomainError>(IO.monad())
breaks in
0.10.5
version of the library. Specifically, it doesn’t like the
IO.monad()
type. The snippet above works on version
0.10.3
In
0.10.5
it’s expecting
MF: Monad<DomainError>
and in
0.10.3
MF: Monad<ForIO>
. Do you think this is a bug or intentional change between the two version?