1// Copyright 2020 Alexander Korn 2// 3// Licensed under the MIT license 4 5//! Algorithms matching a single pattern on a text. 6 7pub mod bndm; 8pub mod horspool; 9pub mod naive; 10pub mod shift_and;