pattern-matching 0.1.1

Pattern matching and full-text index algorithms.
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright 2020 Alexander Korn
//
// Licensed under the MIT license

//! Algorithms matching a single pattern on a text.

pub mod bndm;
pub mod horspool;
pub mod naive;
pub mod shift_and;