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:
parent
9e185f1c3e
commit
ac1042a9ca
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue