1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! # Comlib String Utilities
//! This library contains some commonly used string algorithms.
//!
//! ## Content
//! - [Rolling hash](RollingHash)
//!
//! ## Still missing
//! - Z algorithm
//! - Automata
//! - Pattern matching

#![warn(missing_docs)]

mod rolling_hash;
pub use rolling_hash::RollingHash;