MorseExt

Trait MorseExt 

Source
pub trait MorseExt {
    type Output;

    // Required method
    fn morse(self) -> Self::Output;
}
Expand description

An extension trait for iterators which yield Symbols

Required Associated Types§

Required Methods§

Source

fn morse(self) -> Self::Output

Implementors§

Source§

impl<I> MorseExt for I
where I: Iterator<Item = Symbol>,