| Crates.io | utf8-stream |
| lib.rs | utf8-stream |
| version | 0.0.0 |
| created_at | 2025-06-26 02:27:02.591543+00 |
| updated_at | 2025-06-26 02:27:02.591543+00 |
| description | Lightweight crate that provides Utf8Stream that "streams" over utf8 chunks and derefs to string slices |
| homepage | https://github.com/gabrielfalcao/utf8-stream |
| repository | |
| max_upload_size | |
| id | 1726789 |
| size | 18,891 |
Lightweight crate that provides Utf8Stream that "streams" over utf8 chunks and derefs to string slices.
use charstream::Utf8Stream;
let stream = Utf8Stream::new("red❤️heart");
assert_eq!(
stream.map(String::from).collect::<Vec<String>>(),
vec!["r", "e", "d", "❤️", "h", "e", "a", "r", "t"]
);