1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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 {}