rust_string_utils/
lib.rs

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

pub mod utils {
    pub mod is_empty;
    pub mod is_blank;
    pub mod reverse;
    pub mod start_with;
    pub mod join_char;
    pub mod replace;
    pub mod replace_chars;
    pub mod count_matches;
    pub mod trip;
    pub mod swap_case;
}

pub use utils::is_empty::is_empty;
pub use utils::is_blank::is_blank;
pub use utils::reverse::reverse;
pub use utils::start_with::start_with;
pub use utils::join_char::join_char;
pub use utils::replace::replace;
pub use utils::replace_chars::replace_chars;
pub use utils::count_matches::count_matches;
pub use utils::trip::trip;
pub use utils::swap_case::swap_case;