cycle method

  1. @override
CycleRIterator<T> cycle()

Creates an iterator which repeats the elements of the original iterator endlessly.

Implementation

@override
CycleRIterator<T> cycle() => CycleRIterator(this);