pub trait GramsLoader<R> where
    R: Read
{ fn parser(&self) -> Result<GramsParser<R>>; }
Expand description

Loader for a N-gram counts file.

Required methods

Creates GramsParser.

Implementors