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
// region: --- Modules
mod as_strs_ext;
mod cow_lines;
mod str_ext;
mod vec_ext;
pub use as_strs_ext::*;
pub use cow_lines::*;
#[allow(unused)]
pub use str_ext::*;
pub use vec_ext::*;
pub mod code;
pub mod consts;
pub mod cred;
pub mod csvs;
pub mod docx;
pub mod editor;
pub mod files;
pub mod hbs;
pub mod html;
pub mod jsons;
pub mod md;
pub mod os;
pub mod paths;
pub mod pdf;
pub mod proc;
pub mod text;
pub mod time;
pub mod tomls;
pub mod webc;
pub mod yamls;
pub mod zip;
// endregion: --- Modules
/// Generic wrapper for a NewType Pattern
pub struct W<T>(pub T);