[][src]Trait cycle_to_nth::CycleToNthAdapter

pub trait CycleToNthAdapter where
    Self: Sized + Clone
{ fn cycle_to_nth(self, nth: usize) -> CycleToNth<Self>

Important traits for CycleToNth<I>

impl<I> Iterator for CycleToNth<I> where
    I: Clone + Iterator
type Item = <I as Iterator>::Item;
; }

Required methods

fn cycle_to_nth(self, nth: usize) -> CycleToNth<Self>

Important traits for CycleToNth<I>

impl<I> Iterator for CycleToNth<I> where
    I: Clone + Iterator
type Item = <I as Iterator>::Item;

Loading content...

Implementors

impl<I> CycleToNthAdapter for I where
    Self: Sized + Clone,
    I: Iterator
[src]

Loading content...