OutcomeFlow

typealias OutcomeFlow<Ok, Error> = Flow<Outcome<Ok, Error>>

Alias for a Flow of Outcome values.

val outcomeFlow: OutcomeFlow<Int, String> = flow {
emit(outcomeOf { 42 })
}

See also