jacob
10/24/2018, 5:14 AMfun 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)