zipora 3.1.5

High-performance Rust implementation providing advanced data structures and compression algorithms with memory safety guarantees. Features LRU page cache, sophisticated caching layer, fiber-based concurrency, real-time compression, secure memory pools, SIMD optimizations, and complete C FFI for migration from C++.
//! # SIMD Memory Operations
//!
//! Hardware-accelerated search operations using SSE4.2 PCMPESTRI instructions.
//!
//! ## Modules
//!
//! - **search**: SSE4.2 PCMPESTRI-based string search operations
//!
//! ## Performance
//!
//! - **Character search**: 2-4x faster than memchr
//! - **Pattern search**: 2-8x faster than naive search
//!
//! ## Architecture
//!
//! - **6-Tier SIMD Framework**: AVX-512 → AVX2 → SSE4.2 → SSE2 → NEON → Scalar
//! - **Runtime CPU Detection**: Optimal implementation selection
//! - **PCMPESTRI Instructions**: Hardware string comparison with early exit
//! - **Zero Unsafe in Public APIs**: Memory safety guaranteed

pub mod search;

pub use search::{
    find_char, find_pattern, find_any_of, compare_strings,
    SimdStringSearch, SearchTier, SearchConfig,
};