2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-02-28 23:29:41 +00:00

Mark extend() as unstable

This commit is contained in:
Stjepan Glavina 2019-11-08 02:38:49 +01:00
parent fd088fea38
commit ab2f64cd84

View file

@ -65,6 +65,8 @@ pub trait Extend<A> {
/// #
/// # })
/// ```
#[cfg(feature = "unstable")]
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
pub async fn extend<'a, C, A, T>(collection: &mut C, stream: T)
where
C: Extend<A>,