RecordToResult6<A, B, C, D, E, F, Z extends Object> extension
- on
-
- (Result<A, Z>, Result<B, Z>, Result<C, Z>, Result<D, Z>, Result<E, Z>, Result<F, Z>)
Methods
-
toResult()
→ Result<(A, B, C, D, E, F), List<Z>>
-
Transforms a Record of Results into a single Result. The Ok value is a Record of all Result's Ok
values. The Err value is the List of all Err values.
-
toResultEager()
→ Result<(A, B, C, D, E, F), Z>
-
Transforms a Record of Results into a single Result. The Ok value is a Record of all Result's Ok
values. The Err value is the first Err encountered.