Sergio Crespo Toubes
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() }