-
Notifications
You must be signed in to change notification settings - Fork 601
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add accumulating variant of Stream.debounce
#3028
base: main
Are you sure you want to change the base?
Conversation
Appreciate there were a number of failures that were my fault, but I can't understand the latest one (native linking failure) - what's the issue here? |
Just a flake :) |
Any thoughts on |
It wasn't a particularly thought-through choice, just the type I reached for. For my specific use case a type that expresses that it's always non-empty is helpful, but happy to switch it to |
OK cool, I think we should switch to |
I don't know if there's enough demand/need for this, but I had a use case where I needed something like
debounce
but that keeps all the elements of the stream, and it seemed generic enough to be worth sharing.