Trait IntoRanges

Source
pub trait IntoRanges {
    type Iter: Iterator<Item = Range<usize>>;

    // Required method
    fn into_ranges(self) -> Self::Iter;
}

Required Associated Types§

Required Methods§

Source

fn into_ranges(self) -> Self::Iter

Implementors§

Source§

impl<'a> IntoRanges for Offsets<&'a [usize]>

Source§

type Iter = Ranges<'a>