@[inline]
Returns a finite iterator for the given vector starting at the given index. The iterator yields the elements of the vector in order and then terminates.
The monadic version of this iterator is
Vector.iterFromIdxM.
Termination properties:
Finiteinstance: alwaysProductiveinstance: always
Equations
- xs.iterFromIdx pos = xs.toArray.iterFromIdx pos
Instances For
@[inline]
Returns a finite iterator for the given vector. The iterator yields the elements of the vector in order and then terminates.
The monadic version of this iterator is
Vector.iterM.
Termination properties:
Finiteinstance: alwaysProductiveinstance: always