toml [dependencies] easy-pool = "0.1.0"

Pools :


Simple example

```rust, norun use easypool::PoolMutex; use std::sync::Arc;

let pool = Arc::new(PoolMutex::>::new()); let val = pool.createwith(|| Vec::withcapacity(1024)); drop(val); // return to the pool ```