filterNotLoading¶
fun <F, T> ProgressiveFlow<F, T>.filterNotLoading(): Flow<Outcome<F, T>>
Filters out all the values with a non-done progress from this flow.
All progress information from filtered-out values is re-emitted to the calling flow.
See also¶
now: Return only the first non-loading value, instead of returning a flow.