3个不稳定版本
0.2.0 | 2021年3月3日 |
---|---|
0.1.1 | 2021年3月3日 |
0.1.0 | 2021年3月2日 |
#2161 在 数据结构
7KB
114 行
winvec-rs
为Rust的窗口向量(TTL)集合
用法
[dependencies]
winvec = "0.1"
fn main() {
let mut winvec = WinVec::with_duration(Duration::from_secs(5));
winvec.push("Hello!");
winvec.push("World!");
winvec.iter().for_each(|e| println!("{}", e));
}