toolchest 0.1.0

Essential utility collection for Rust - the missing complement to itertools
Documentation
1
2
3
4
5
fn main() {
    let input = "HelloWorld";
    let snake = toolchest::strings::to_snake_case(input);
    println!("{} -> {}", input, snake);
}