pub use ::join_lazy_fmt::Join;
#[cfg(feature = "std")]
#[cfg_attr(feature = "better-docs",
doc(cfg(feature = "std")),
)]
pub trait IteratorExt : Sized + Iterator {
fn vec<T> (self: Self)
-> crate::__::std::vec::Vec<T>
where
Self : Iterator<Item = T>,
{
self.collect()
}
fn dict<K, V> (self: Self)
-> crate::__::std::collections::HashMap<K, V>
where
Self : Iterator<Item = (K, V)>,
K : ::core::hash::Hash + Eq,
{
self.collect()
}
}
#[cfg(feature = "std")]
#[cfg_attr(feature = "better-docs",
doc(cfg(feature = "std")),
)]
impl<T> IteratorExt for T where Self : Iterator {}