cycle method
Creates an iterator which repeats the elements of the original iterator endlessly.
Implementation
@override
CycleRIterator<T> cycle() => CycleRIterator(this);
Creates an iterator which repeats the elements of the original iterator endlessly.
@override
CycleRIterator<T> cycle() => CycleRIterator(this);