competitive_library/string/mod.rs
1//! 文字列に関係しそうなもの
2pub mod aho_corasick;
3pub mod manacher;
4pub mod rolling_hash;
5pub mod z_algorithm;
6
7#[deprecated(since = "0.1.0", note = "use `manacher` instead")]
8pub mod manachar {
9 pub use super::manacher::*;
10}
11
12#[deprecated(since = "0.1.0", note = "use `rolling_hash` instead")]
13pub mod rollinghash {
14 pub use super::rolling_hash::*;
15}