Trait hyphenation::iter::Iter[][src]

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

Notable traits for Hyphenating<'m, I>

impl<'m, I, S> Iterator for Hyphenating<'m, I> where
    I: Iterator<Item = S> + ExactSizeIterator,
    S: AsRef<str>, 
type Item = String;
; }
Expand description

A hyphenating iterator with borrowed data.

Associated Types

Required methods

Implementors