<@UDDCG4T0U> is what you want essentially this? ``...
# arrow
j
@vejeta is what you want essentially this?
Copy code
fun parseIntEither(toString: String): Either<Throwable, Int> {
    return 1.right()
}

val listOfValidNumbers = listOf("1", "2", "3").k().map(::parseIntEither)
      
val sequencedEitherResult = listOfValidNumbers.traverse(Either.applicative(), ::identity)