ReverseUncheckedStrideIterator<E> constructor

ReverseUncheckedStrideIterator<E>(
  1. Iterable<E> iterable,
  2. int stepSize, [
  3. int startIndex = 0
])

Constructs an object of type ReverseUncheckedStrideIterator.

  • iterable: An iterable with entries of type E.
  • stepSize: The iteration stride (step size). Must be smaller than zero.
  • startIndex: If startIndex is a valid list index then the first element returned by the getter current (after initially advancing the iterator) will be: iterable.elementAt(startIndex).

Implementation

ReverseUncheckedStrideIterator(super.iterable, super.stepSize,
    [super.startIndex = 0]);