//! Optimized allocation and collection types for Astrelis.
//!
//! This module provides:
//! - Re-exports of optimized hash collections using AHash
//! - SparseSet data structure for generational indices
//! - Common allocation utilities
// Re-export optimized hash collections
pub use ;
/// Type alias for the standard HashMap with AHash for better performance.
pub type AHashMap<K, V> = AHashMap;
/// Type alias for the standard HashSet with AHash for better performance.
pub type AHashSet<T> = AHashSet;