2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-02-28 23:29:41 +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#"
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
streams have been exhausted.
Items are yielded as soon as they're received, and the stream continues yield until
both streams have been exhausted. The output ordering between streams is not guaranteed.
# Examples