[][src]Trait melib::text_processing::search::KMP

pub trait KMP {
    fn kmp_search(&self, pattern: &str) -> SmallVec<[usize; 256]>;

    fn kmp_table(graphemes: &[&str]) -> SmallVec<[i32; 256]> { ... }
}

Required methods

Loading content...

Provided methods

fn kmp_table(graphemes: &[&str]) -> SmallVec<[i32; 256]>

Loading content...

Implementations on Foreign Types

impl KMP for str[src]

Loading content...

Implementors

Loading content...