[][src]Trait kl_hyphenate::iter::Iter

pub trait Iter<'t> {
    type Iter;
    fn iter(&'t self) -> Hyphenating<'t, Self::Iter>;
}

A hyphenating iterator with borrowed data.

Associated Types

type Iter

Loading content...

Required methods

fn iter(&'t self) -> Hyphenating<'t, Self::Iter>

Loading content...

Implementors

impl<'t> Iter<'t> for Word<'t, usize>[src]

type Iter = Segments<'t, Cloned<Iter<'t, usize>>>

Loading content...