36 releases (16 stable)
| new 3.0.7 | May 11, 2026 |
|---|---|
| 3.0.6 | Nov 15, 2025 |
| 3.0.5 | Oct 19, 2024 |
| 3.0.3 | May 18, 2024 |
| 0.1.2 | Sep 30, 2019 |
#169 in Encoding
52,915 downloads per month
Used in 62 crates
(27 directly)
21KB
334 lines
utf8-chars
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);
}
}
Dependencies
~66KB