Hello, how can a do this? without using folds. `...
# arrow
s
Hello, how can a do this? without using folds.
Copy code
val a : Either<Throwable, Int> = Either.Right(5)
val b : Either<Throwable, String> = Either.Right("Solution: ")
val c : Either<Throwable, String> = b.merge { bRight -> bRight + a.Right().toString() }
Thanks