Change first character to upper case and the rest to lower case.
Only affects Unicode characters equivalent in ASCII. Capitalize
is implemented for all types that implement [AsRef<str>
].
```rust use capitalize::Capitalize;
assert_eq!( "heLLo 😊 World!".capitalize(), String::from("Hello 😊 world!") ); ```