traverse
inline fun <E, A, B> Iterable<A>.traverse(f: (A) -> Either<E, B>): Either<E, List<B>>
Content copied to clipboard
inline fun <A, B> Iterable<A>.traverse(f: (A) -> Result<B>): Result<List<B>>
Content copied to clipboard
inline fun <E, A, B> Iterable<A>.traverse(semigroup: Semigroup<E>, f: (A) -> Validated<E, B>): Validated<E, List<B>>
Content copied to clipboard
inline fun <E, A, B> Iterable<A>.traverse(f: (A) -> ValidatedNel<E, B>): ValidatedNel<E, List<B>>
Content copied to clipboard
inline fun <A, B> Iterable<A>.traverse(f: (A) -> Option<B>): Option<List<B>>
Content copied to clipboard