Sam Stone
flow2
flow1.map{ flow2(it) }.flattenConcat()
flow1
MutableStateFlow<MutableSet<Int>>
flow1.emit(set)
flow2.onEach
flow1.map{}
julian
onEach
flow1.map
flow1.emit
Updates to the value are always conflated. So a slow collector skips fast updates, but always collects the most recently emitted value.
map
wasyl
A modern programming language that makes developers happier.