traverse Either
inline fun <A, B, AA, C> Ior<A, B>.traverseEither(f: (B) -> Either<AA, C>): Either<AA, Ior<A, C>>(source)
Synonym for traverse((A)-> Either
inline fun <K, E, A, B> Map<K, A>.traverseEither(f: (A) -> Either<E, B>): Either<E, Map<K, B>>(source)
Synonym for traverse((A)-> Either
inline fun <E, A, B> Nel<A>.traverseEither(f: (A) -> Either<E, B>): Either<E, NonEmptyList<B>>(source)
Synonym for traverse((A)-> Either
Synonym for traverse((T)-> Either