std_ext/
lib.rs

1mod command;
2mod map;
3mod option;
4mod path;
5pub mod path2;
6mod result;
7mod str;
8mod vec;
9
10pub use command::*;
11pub use option::*;
12pub use path::*;
13pub use result::*;
14pub use str::*;
15pub use vec::*;
16
17pub fn default<T: Default>() -> T {
18    T::default()
19}