1 2 3 4 5 6 7 8
// Rabin-Karp find operation module. pub mod kernel; pub use kernel::{hash_params, push_hash, rabin_karp_find, roll_hash}; // Backend-specific lowering marker. // CPU reference kernel for `string_matching.rabin_karp_find`.