traverse Either
inline fun <E, A, B> NonEmptyList<A>.traverseEither(f: (A) -> Either<E, B>): Either<E, NonEmptyList<B>>
Deprecated
traverseEither is being renamed to traverse to simplify the Arrow API
Replace with
import arrow.core.traverse
Content copied to clipboard
traverse(f)Content copied to clipboard
Deprecated
traverseEither is being renamed to traverse to simplify the Arrow API
Replace with
import arrow.core.traverse
Content copied to clipboard
traverse(f).map { it.asSequence() }Content copied to clipboard