diff --git a/docs/0.x/-flow-ext/com.hoc081098.flowext/map-result-catching.html b/docs/0.x/-flow-ext/com.hoc081098.flowext/map-result-catching.html index 07bd87e7..6224eacd 100644 --- a/docs/0.x/-flow-ext/com.hoc081098.flowext/map-result-catching.html +++ b/docs/0.x/-flow-ext/com.hoc081098.flowext/map-result-catching.html @@ -66,7 +66,7 @@

mapResultCatching

-
fun <T, R> Flow<Result<T>>.mapResultCatching(transform: suspend (T) -> R): Flow<Result<R>>(source)

Maps a Flow of Results to a Flow of a mapped Results.

Any exception thrown by the transform function is caught, and emitted as a failure result to the resulting flow.

See also

+
fun <T, R> Flow<Result<T>>.mapResultCatching(transform: suspend (T) -> R): Flow<Result<R>>(source)

Maps a Flow of Results to a Flow of a mapped Results.

Any exception thrown by the transform function is caught, and emitted as a failure result to the resulting flow.

See also

-

Maps values in the Flow to successful results, and catches and wraps any exception into a failure result.

+

Maps values in the Flow to successful results, and catches and wraps any exception into a failure result.

-

Maps a Flow of Results to a Flow of values from successful results. Failure results are re-thrown as exceptions.

See also

+

Maps a Flow of Results to a Flow of values from successful results. Failure results are re-thrown as exceptions.

See also