#ttl #vector #collection #push #windowed

winvec

为Rust的窗口向量(TTL)集合

3个不稳定版本

0.2.0 2021年3月3日
0.1.1 2021年3月3日
0.1.0 2021年3月2日

#2161数据结构

MIT 许可证

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));
}

无运行时依赖