v1.1.0 - Result.collect() constructor
1.1.0 - 2019-01-03
Added
Result.collect(iterable: Iterable[T, E]) -> Result[Tuple[T, ...], E]
added
to collect an iterable of results into a single result, short-circuiting
if any errors are encountered
Result.collect(iterable: Iterable[T, E]) -> Result[Tuple[T, ...], E]
added