blob: 6851948e6445fce2f96360f4e9fff5d8c435c6b6 [file] [log] [blame]
use std::collections::BinaryHeap;
use std::pin::Pin;
use crate::prelude::*;
use crate::stream::{self, FromStream, IntoStream};
impl<T: Ord> FromStream<T> for BinaryHeap<T> {
#[inline]
fn from_stream<'a, S: IntoStream<Item = T> + 'a>(
stream: S,
) -> Pin<Box<dyn Future<Output = Self> + 'a>> {
let stream = stream.into_stream();
Box::pin(async move {
let mut out = BinaryHeap::new();
stream::extend(&mut out, stream).await;
out
})
}
}