1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
// Copyright 2020 Alexander Korn
//
// Licensed under the MIT license

//! A library containing pattern matching and full-text index algorithms.
//!
//! # Algorithms
//!
//! Currently, the following algorithms are implemented:
//!
//! - [Naive](single_pattern::naive)
//! - [Shift-And](single_pattern::shift_and)

pub mod single_pattern;