30 releases (10 stable)
3.0.1 | Aug 22, 2023 |
---|---|
3.0.0 | Jun 23, 2023 |
2.1.0 | May 27, 2023 |
2.0.3 | Dec 11, 2022 |
0.1.2 | Sep 30, 2019 |
#1 in #chars
4,632 downloads per month
Used in 8 crates
(7 directly)
21KB
330 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
~67KB