//! Internal utility functions and helpers.
//!
//! This module provides low-level utilities used throughout the BloomCraft crate.
//! These are implementation details and not part of the public API.
//!
//! # Modules
//!
//! - [`atomic`] - Atomic operation helpers and lock-free primitives
//! - [`bitops`] - Bit manipulation utilities and optimizations
//! - [`cache_detect`] - CPU cache size detection for performance tuning
// Re-export commonly used items
pub use AtomicCounter;
pub use ;
pub use ;