clone method

  1. @override
ArrayChunksRIterator<T> clone()
override

An iterator which is a "clone" of the original iterator. Iterating through the original or the clone will not affect the other. Do not modify the original collection the original Iterable is based on while iterating. See CloneRIterator for more information.

Implementation

@override
ArrayChunksRIterator<T> clone() {
  final temp = CloneRIterator._trackable(_iterator);
  _iterator = temp;
  return ArrayChunksRIterator(CloneRIterator._clone(temp), _chunkSize)
    .._currentChunkBeingBuilt = _currentChunkBeingBuilt?.toArr()
    .._count = _count
    .._currentChunk = _currentChunk?.toArr();
}