bindAll

open fun <K, A> Map<K, Either<Error, A>>.bindAll(): Map<K, A>(source)

Extracts all the values in the Map, raising every Either.Left as a logical failure. In other words, executed bind over every value in this Map.


open fun <A> Iterable<Either<Error, A>>.bindAll(): List<A>(source)

Extracts all the values in the Iterable, raising every Either.Left as a logical failure. In other words, executed bind over every value in this Iterable.


Extracts all the values in the NonEmptyList, raising every Either.Left as a logical failure. In other words, executed bind over every value in this NonEmptyList.


Extracts all the values in the NonEmptySet, raising every Either.Left as a logical failure. In other words, executed bind over every value in this NonEmptySet.