```rust
[dependencies] umlauts = "0.1"
umlauts = { version = "0.1", features = [ "unsafe" ] } ```
```rust extern crate umlauts;
use umlauts::UmlautsOwned;
let mut s = "Öl Ärmel Übermut".tostring(); s.makeutf8umlautslowercase(); assert_eq!("öl ärmel übermut", s); ```
&mut str
manipulationBy default, this crate itself does not use unsafe features,
except from the [memchr] dependency.
To allow manipulating of references to String
and &mut str
,
the unsafe
feature can be used.
As the manipulating functions operate on &mut [u8]
and will always
return valid UTF-8 if valid UTF-8 is given,
those unsafe features should perform the same.