```@FlowPreview @OptIn(kotlin.experimental.Experim...
# coroutines
u
Copy code
@FlowPreview
@OptIn(kotlin.experimental.ExperimentalTypeInference::class)
@OverloadResolutionByLambdaReturnType
public fun <T> Flow<T>.debounce(timeoutMillis: (T) -> Long): Flow<T> =
when is
debouce
becoming stable? it's annoying, it's preview for years now
c
As I recall there’s an open issue to improve all the timing related functions, that depends on some lower level work. Sorry this is vague but there is probably a ticket describing this work, it affects debounce, sample, throttle
👍 1