mapResults
Maps every item of this using transform
infix inline fun <T, R> Sequence<ApiResult<T>>.mapResults(crossinline transform: (T) -> R): Sequence<ApiResult<R>>
Maps every item of this using transform
inline fun <T, R> Flow<ApiResult<T>>.mapResults(crossinline transform: suspend (T) -> R): Flow<ApiResult<R>>
Maps each success value of this flow using transform