galvan/std/mod.rs
1mod borrow;
2pub use borrow::*;
3
4mod control_flow;
5pub use control_flow::*;
6
7mod result;
8pub use result::*;
9
10// External re-exports
11pub use itertools::*;
12pub trait ItertoolsExt: Itertools {
13 fn vec(self) -> Vec<Self::Item>
14 where
15 Self: Sized,
16 {
17 self.collect()
18 }
19}
20
21impl<T: ?Sized> ItertoolsExt for T where T: Itertools {}