34 releases (14 stable)
3.0.5 | Oct 19, 2024 |
---|---|
3.0.3 | May 18, 2024 |
3.0.2 | Feb 19, 2024 |
3.0.1 | Aug 22, 2023 |
0.1.2 | Sep 30, 2019 |
#181 in Encoding
6,306 downloads per month
Used in 17 crates
(13 directly)
21KB
331 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
~69KB