Trait StopWordsIterator

Source
pub trait StopWordsIterator: Iterator {
    // Provided method
    fn filter_stop_words(
        self,
        sw: &StopWords,
    ) -> StopWordsIteratorInner<'_, Self>
       where Self: Sized { ... }
}
Expand description

Trait implementing an Iterator function to filter out StopWords out of an Iterator

Provided Methods§

Source

fn filter_stop_words(self, sw: &StopWords) -> StopWordsIteratorInner<'_, Self>
where Self: Sized,

Implementors§