peekable method
Creates an iterator which can use the "peek" to look at the next element of the iterator without consuming it.
Implementation
@override
PeekableRIterator<T> peekable() => PeekableRIterator(this);
Creates an iterator which can use the "peek" to look at the next element of the iterator without consuming it.
@override
PeekableRIterator<T> peekable() => PeekableRIterator(this);