https://kotlinlang.org logo
#arrow
Title
r

Rob Hurkes

08/08/2018, 6:49 PM
My naive approach looks like:
Copy code
if (result.isLeft()) {
                return Either.left(result.left)
            }
but that has some issues with type inference.