2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-07 00:46:43 +00:00

note on Stream::merge ordering (#491)

* note on Stream::merge ordering

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>

* Update src/stream/stream/mod.rs
This commit is contained in:
Yoshua Wuyts 2019-11-09 17:02:17 +01:00 committed by Stjepan Glavina
parent 9e185f1c3e
commit ac1042a9ca

View file

@ -1655,8 +1655,8 @@ extension_trait! {
#[doc = r#" #[doc = r#"
Combines multiple streams into a single stream of all their outputs. Combines multiple streams into a single stream of all their outputs.
Items are yielded as soon as they're received, and the stream continues yield until both Items are yielded as soon as they're received, and the stream continues yield until
streams have been exhausted. both streams have been exhausted. The output ordering between streams is not guaranteed.
# Examples # Examples