Trait hyphenation_commons::parse::Parse[][src]

pub trait Parse {
    type Tally: Eq;
    fn value(v: char) -> Option<u8>;
fn tally(s: &str) -> Self::Tally; fn alphabetical(s: &str) -> String { ... }
fn pair<N>(str_klp: &str, normalize: N) -> (String, Self::Tally)
    where
        N: Fn(&str) -> String
, { ... } }

Associated Types

Required methods

Provided methods

Implementors