-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
stream: add StreamExt::fuse
#2085
Conversation
Provides an async equivalent to `Iterator::fuse`.
I'm a little concerned that If we're going to have an identical trait name and identical method name, we should at least ensure that it's clearly documented that this is substantially different from the |
Agreed, but not sure what a better name might be? |
Well, rather than changing the name, we could just have a large and obvious note in the docs? Not my favourite solution, but better than nothing. |
I don't think it is super critical to call out that it doesn't implement |
I think it should be called out. Reading this PR made made me think it did implement the |
I tracked the question re: documenting the relation with |
Provides an async equivalent to
Iterator::fuse
.