2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-26 10:16:49 +00:00

Stabilize Stream::merge

This commit is contained in:
Yoshua Wuyts 2020-09-23 14:12:35 +02:00
parent 14bbacd76a
commit d8dcedf815
2 changed files with 0 additions and 3 deletions

View file

@ -339,7 +339,6 @@ cfg_unstable! {
pub use into_stream::IntoStream;
pub use pending::{pending, Pending};
pub use product::Product;
pub use stream::Merge;
pub use successors::{successors, Successors};
pub use sum::Sum;
}

View file

@ -16,8 +16,6 @@ pin_project! {
///
/// [`merge`]: trait.Stream.html#method.merge
/// [`Stream`]: trait.Stream.html
#[cfg(feature = "unstable")]
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
#[derive(Debug)]
pub struct Merge<L, R> {
#[pin]