dynamic-pool icon indicating copy to clipboard operation
dynamic-pool copied to clipboard

a lock-free, thread-safe, dynamically-sized object pool.

Results 3 dynamic-pool issues
Sort by recently updated
recently updated
newest added

Internally `DynamicPool` will box the callback, so there isn't a good reason to prevent something like `DynamicPool T>` from being specified.

This allows users of newer versions of crossbeam to avoid duplicate versions of dependencies, not much else. This update bumps minimum required Rust version to 1.36. There are some API...

Right now it is not possible to use standard container types like HashMap directly in a dynamic pool, and that is too bad because it would be very convenient. The...