Added FromStream + Extend for HashSet

staging
Sunjay Varma 5 years ago
parent 333f35338e
commit 6c2ffd7181

@ -0,0 +1,39 @@
use std::pin::Pin;
use std::hash::{Hash, BuildHasher};
use std::collections::HashSet;
use crate::prelude::*;
use crate::stream::{Extend, IntoStream};
impl<T, H> Extend<T> for HashSet<T, H>
where T: Eq + Hash,
H: BuildHasher + Default {
fn stream_extend<'a, S: IntoStream<Item = T> + 'a>(
&'a mut self,
stream: S,
) -> Pin<Box<dyn Future<Output = ()> + 'a>> {
// The Extend impl for HashSet in the standard library delegates to the internal HashMap.
// Thus, this impl is just a copy of the async Extend impl for HashMap in this crate.
let stream = stream.into_stream();
// The following is adapted from the hashbrown source code:
// https://github.com/rust-lang/hashbrown/blob/d1ad4fc3aae2ade446738eea512e50b9e863dd0c/src/map.rs#L2470-L2491
//
// Keys may be already present or show multiple times in the stream. Reserve the entire
// hint lower bound if the map is empty. Otherwise reserve half the hint (rounded up), so
// the map will only resize twice in the worst case.
//TODO: Add this back in when size_hint is added to Stream/StreamExt
//let reserve = if self.is_empty() {
// stream.size_hint().0
//} else {
// (stream.size_hint().0 + 1) / 2
//};
//self.reserve(reserve);
Box::pin(stream.for_each(move |item| {
self.insert(item);
}))
}
}

@ -0,0 +1,27 @@
use std::pin::Pin;
use std::hash::{Hash, BuildHasher};
use std::collections::HashSet;
use crate::stream::{Extend, FromStream, IntoStream};
impl<T, H> FromStream<T> for HashSet<T, H>
where T: Eq + Hash,
H: BuildHasher + Default {
#[inline]
fn from_stream<'a, S: IntoStream<Item = T>>(
stream: S,
) -> Pin<Box<dyn core::future::Future<Output = Self> + 'a>>
where
<S as IntoStream>::IntoStream: 'a,
{
let stream = stream.into_stream();
Box::pin(async move {
pin_utils::pin_mut!(stream);
let mut out = HashSet::with_hasher(Default::default());
out.stream_extend(stream).await;
out
})
}
}

@ -0,0 +1,7 @@
//! The Rust hash set, implemented as a `HashMap` where the value is `()`.
mod extend;
mod from_stream;
#[doc(inline)]
pub use std::collections::HashSet;

@ -5,8 +5,10 @@
pub mod vec_deque;
pub mod hash_map;
pub mod hash_set;
pub mod btree_map;
pub use vec_deque::VecDeque;
pub use hash_map::HashMap;
pub use hash_set::HashSet;
pub use btree_map::BTreeMap;

Loading…
Cancel
Save