My naive approach looks like: ```if (result.isLeft...
# arrow
r
My naive approach looks like:
Copy code
if (result.isLeft()) {
                return Either.left(result.left)
            }
but that has some issues with type inference.