We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deb1184 commit fa084d0Copy full SHA for fa084d0
README.md
@@ -20,9 +20,8 @@ simdutf8 = { version = "0.0.1"}
20
Use it just like `std::str::from_utf8`:
21
```rust
22
use simdutf8::basic::{from_utf8, Utf8Error};
23
-fn main() {
24
- println!("{}", from_utf8(b"I \xE2\x9D\xA4\xEF\xB8\x8F UTF-8!").unwrap());
25
-}
+
+println!("{}", from_utf8(b"I \xE2\x9D\xA4\xEF\xB8\x8F UTF-8!").unwrap());
26
```
27
28
Put `simdutf8 = "0.1.0"` in your Cargo.toml file and use `simdutf8::basic::from_utf8` as a drop-in replacement for
0 commit comments