I guess the types just switched places ```inline f...
# arrow
s
I guess the types just switched places
Copy code
inline fun <L, F> EitherT.Companion.monad(MF: Monad<F>): EitherTMonad<L, F>
inline fun <L, F> EitherT.Companion.monad(MF: Monad<F>): EitherTMonad<L, F>
s
Yes, this was a change made in Arrow Mtl in to allow further composition without specifying
F
.
s
got it. Thank you.