[][src]Trait punkt::params::DefinesNonPrefixCharacters

pub trait DefinesNonPrefixCharacters {
    const NONPREFIX_CHARS: &'static Set<char>;
    fn is_nonprefix_char(c: &char) -> bool { ... }
}

Defines a set of a characters that can not start a word.

Associated Constants

const NONPREFIX_CHARS: &'static Set<char>

The set of characters that can not start a word.

Loading content...

Provided methods

fn is_nonprefix_char(c: &char) -> bool

Checks if a character can start a word.

Loading content...

Implementors

impl DefinesNonPrefixCharacters for Standard[src]

Loading content...