Trait stam::LimitIterator

source ·
pub trait LimitIterator<I>
where I: Iterator,
{ // Required method fn limit(self, begin: isize, end: isize) -> LimitIter<I> ; }
Expand description

An iterator that can extract an arbitrary subrange, even with relative coordinates (at which point it will allocate a buffer)

Required Methods§

source

fn limit(self, begin: isize, end: isize) -> LimitIter<I>

Implementors§

source§

impl<I> LimitIterator<I> for I
where I: Iterator,