1 2 3 4 5 6 7 8
use super::{rolling_hash_program, DEFAULT_WINDOW_SIZE}; use crate::ir::Program; /// Build the canonical rolling hash program with the default window size. #[must_use] pub fn default_rolling_hash_program() -> Program { rolling_hash_program(DEFAULT_WINDOW_SIZE) }