SharedFlow.toList(mutableList)
: difference behavior between 1.6.4 vs 1.7.0-Beta
#3706
Labels
SharedFlow.toList(mutableList)
: difference behavior between 1.6.4 vs 1.7.0-Beta
#3706
Sometimes, I use this method to write simple test on SharedFlow.
Version 1.6.4 works well.
Since 1.7.0-Beta, this method is deprecated and the implementation seem be wrong
IMO, the correct impl. is
SharedFlow.toList(acc) = (this as Flow).toList(acc)
The text was updated successfully, but these errors were encountered: