getAllErrors

fun <V, E> getAllErrors(vararg results: Result<V, E>): List<E>

Extracts from a vararg of Results all the Err elements. All the Err elements are extracted in order.


fun <V, E> Iterable<Result<V, E>>.getAllErrors(): List<E>

Extracts from an Iterable of Results all the Err elements. All the Err elements are extracted in order.