winvec-rs

Windowed Vector (TTL) Collection for Rust

Usage

toml [dependencies] winvec = "0.1"

```rust fn main() { let mut winvec = WinVec::withduration(Duration::fromsecs(5));

winvec.push("Hello!"); winvec.push("World!");

winvec.iter().for_each(|e| println!("{}", e)); }