3 unstable releases

0.2.0 Mar 3, 2021
0.1.1 Mar 3, 2021
0.1.0 Mar 2, 2021

#2067 in Data structures

40 downloads per month

MIT license

7KB
114 lines

winvec-rs

Windowed Vector (TTL) Collection for Rust

Usage

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

No runtime deps