getAll

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

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


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

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