``` val es = listOf(5.right(), "error".left(),...
# arrow
b
Copy code
val es = listOf(5.right(), "error".left(), 3.right()).k()
    val r = es.sequence(Either.applicative()).fix().map { it.fix() }