Trait divvunspell::tokenizer::Tokenize[][src]

pub trait Tokenize {
    fn word_bound_indices(&self) -> WordBoundIndices<'_>

Notable traits for WordBoundIndices<'a>

impl<'a> Iterator for WordBoundIndices<'a> type Item = (usize, &'a str);
;
fn word_indices(&self) -> WordIndices<'_>

Notable traits for WordIndices<'a>

impl<'a> Iterator for WordIndices<'a> type Item = (usize, &'a str);
;
fn word_bound_indices_with_alphabet(
        &self,
        alphabet: Vec<char>
    ) -> WordBoundIndices<'_>

Notable traits for WordBoundIndices<'a>

impl<'a> Iterator for WordBoundIndices<'a> type Item = (usize, &'a str);
;
fn words_with_alphabet(&self, alphabet: Vec<char>) -> Words<'_>

Notable traits for Words<'a>

impl<'a> Iterator for Words<'a> type Item = &'a str;
; }

Required methods

fn word_bound_indices(&self) -> WordBoundIndices<'_>

Notable traits for WordBoundIndices<'a>

impl<'a> Iterator for WordBoundIndices<'a> type Item = (usize, &'a str);
[src]

fn word_indices(&self) -> WordIndices<'_>

Notable traits for WordIndices<'a>

impl<'a> Iterator for WordIndices<'a> type Item = (usize, &'a str);
[src]

fn word_bound_indices_with_alphabet(
    &self,
    alphabet: Vec<char>
) -> WordBoundIndices<'_>

Notable traits for WordBoundIndices<'a>

impl<'a> Iterator for WordBoundIndices<'a> type Item = (usize, &'a str);
[src]

fn words_with_alphabet(&self, alphabet: Vec<char>) -> Words<'_>

Notable traits for Words<'a>

impl<'a> Iterator for Words<'a> type Item = &'a str;
[src]

Loading content...

Implementations on Foreign Types

impl Tokenize for str[src]

Loading content...

Implementors

Loading content...