32个版本 (12个稳定版本)
3.0.3 | 2024年5月18日 |
---|---|
3.0.2 | 2024年2月19日 |
3.0.1 | 2023年8月22日 |
3.0.0 | 2023年6月23日 |
0.1.2 | 2019年9月30日 |
#197 在 编码
每月5,307次下载
在 16 个crate中使用 (12个直接使用)
21KB
330 行
utf8-chars
针对BufRead
的字符迭代器和read_char
方法。
use std::io::stdin;
use utf8_chars::BufReadCharsExt;
fn main() {
for c in stdin().lock().chars().map(|x| x.unwrap()) {
println!("{}", c);
}
}
依赖项
~69KB