[][src]Trait punkt::params::DefinesPunctuation

pub trait DefinesPunctuation {
    const PUNCTUATION: &'static Set<char>;
    fn is_punctuation(c: &char) -> bool { ... }
}

Defines punctuation that can occur within a sentence.

Associated Constants

const PUNCTUATION: &'static Set<char>

The set of legal punctuation marks.

Loading content...

Provided methods

fn is_punctuation(c: &char) -> bool

Checks if a characters is a legal punctuation mark.

Loading content...

Implementors

impl DefinesPunctuation for Standard[src]

Loading content...