| Crates.io | utf8-chars |
| lib.rs | utf8-chars |
| version | 3.0.6 |
| created_at | 2019-09-05 17:26:32.066706+00 |
| updated_at | 2025-11-15 18:33:25.414247+00 |
| description | Char-by-char iterator and `read_char` method for `BufRead`. |
| homepage | |
| repository | https://github.com/A1-Triard/utf8-chars |
| max_upload_size | |
| id | 162476 |
| size | 28,578 |
Char-by-char iterator and read_char method for BufRead.
use std::io::stdin;
use utf8_chars::BufReadCharsExt;
fn main() {
for c in stdin().lock().chars().map(|x| x.unwrap()) {
println!("{}", c);
}
}