#str #iterator #string #windows #window

str_windows

提供对一个字符串(作为&str)的字符窗口迭代器。

1 个不稳定版本

使用旧的Rust 2015

0.1.0 2018年6月2日

#96#str

MIT/Apache

6KB
58

str_windows-rs

提供对一个字符串(作为&str)的字符窗口迭代器。

不分配在堆上。

示例

use str_windows::str_windows;

let input = "s 😀😁";
let mut iter = str_windows(input, 3);
assert_eq!(iter.next(), Some("s 😀"));
assert_eq!(iter.next(), Some(" 😀😁"));
assert!(iter.next().is_none());

无运行时依赖