Jimmy Alvarez
04/14/2021, 8:30 PMrunBloking {}
simon.vergauwen
04/14/2021, 9:56 PMinline
and thus not require runBlocking
.Jimmy Alvarez
04/14/2021, 9:57 PMimplementation "io.arrow-kt:arrow-core:0.11.0"
Jimmy Alvarez
04/14/2021, 10:04 PMarrow.core.Either.Companion.left
, looks like it is deprecated. or moved to other libraryJimmy Alvarez
04/14/2021, 10:47 PMsimon.vergauwen
04/15/2021, 6:53 AMI got a problem after updating and it is that the code i’m working on relies a lot onHere is a release post with some details on how you can migrate. https://www.47deg.com/blog/arrow-0.13.0-release/ But, looks like it is deprecated. or moved to other libraryarrow.core.Either.Companion.left
Either.left
was deprecated in favor of using the actual constructor Either.Left
. So if you replace arrow.core.Either.Companion.left
with arrow.core.Either.Left
and use Left
instead of left
it should fix your issues 🙂Jimmy Alvarez
04/15/2021, 2:35 PMsimon.vergauwen
04/15/2021, 4:27 PM