rust_stringz 1.0.0

A simple string manipulation library for Rust that you should probably don't need. It's just for learning purposes.
Documentation
1
2
3
4
5
6
7
8
9
mod count_occurrences;
mod is_palindrome;
mod to_lowercase;
mod to_uppercase;

pub use count_occurrences::count_occurrences;
pub use is_palindrome::is_palindrome;
pub use to_lowercase::to_lowercase;
pub use to_uppercase::to_uppercase;