traverseResult

inline fun <A, B> Iterable<A>.traverseResult(f: (A) -> Result<B>): Result<List<B>>

Deprecated

traverseResult is being renamed to traverse to simplify the Arrow API

Replace with

import arrow.core.traverse
traverse(f)