2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-02-06 20:55:33 +00:00

Simplifying + optimizing Extend impl for Vec

This commit is contained in:
Sunjay Varma 2019-10-01 23:12:13 -04:00
parent ae146afffc
commit 244c5159df

View file

@ -9,11 +9,9 @@ impl<T> Extend<T> for Vec<T> {
stream: S, stream: S,
) -> Pin<Box<dyn Future<Output = ()> + 'a>> { ) -> Pin<Box<dyn Future<Output = ()> + 'a>> {
let stream = stream.into_stream(); let stream = stream.into_stream();
Box::pin(async move { //TODO: Add this back in when size_hint is added to Stream/StreamExt
pin_utils::pin_mut!(stream); //let (lower_bound, _) = stream.size_hint();
while let Some(item) = stream.next().await { //self.reserve(lower_bound);
self.push(item); Box::pin(stream.for_each(move |item| self.push(item)))
}
})
} }
} }