RecordToResult5<A, B, C, D, E, Z extends Object> extension
Methods
-
toResult(
) → Result< (A, B, C, D, E), 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), 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.