Paul Woitaschek
streetsofboston
fun <T> Flow<T>.cache(scope: CoroutineScope, cacheSize: Int = 1): Flow<T> = replay(cacheSize).autoConnect(scope)
gildor