FixedSizeListIterator<T> constructor

FixedSizeListIterator<T>(List<T> array)

Implementation

FixedSizeListIterator(List<T> array)
    : _array = array,
      _position = -1,
      _length = array.length;