//! Cache utilities and definitions
//!
//! This module provides functions for prefetching memory locations into CPU caches.
/// Prefetches a memory location into L1 cache for reading
// Instead of std::intrinsics::prefetch_read_data which is nightly-only
}
/// Prefetches a memory location into L1 cache for writing
// Instead of std::intrinsics::prefetch_write_data which is nightly-only
}