fastalloc 1.5.0

High-performance memory pooling library with type-safe handles, predictable latency, and zero fragmentation. Perfect for game engines, real-time systems, and high-churn workloads.
Documentation
1
2
3
4
5
6
7
8
9
//! Smart handles for pool-allocated objects.

mod owned;
mod shared;
mod weak;

pub use owned::{OwnedHandle, PoolInterface};
pub use shared::SharedHandle;
pub use weak::WeakHandle;