scala.collection.immutable

class VectorIterator

[source: scala/collection/immutable/VectorIterator.scala]

final class VectorIterator[+A](_startIndex : Int, _endIndex : Int)
extends Iterator[A] with scala.collection.immutable.VectorPointer[A]
Values and Variables inherited from scala.collection.immutable.VectorPointer
scala.collection.immutable.VectorPointer.depth, scala.collection.immutable.VectorPointer.display0, scala.collection.immutable.VectorPointer.display1, scala.collection.immutable.VectorPointer.display2, scala.collection.immutable.VectorPointer.display3, scala.collection.immutable.VectorPointer.display4, scala.collection.immutable.VectorPointer.display5
Method Summary
def foreach0 [U](f : (A) => U) : Unit
def hasNext : Boolean
Does this iterator provide another element?
def next : A
Returns the next element of this iterator.
Methods inherited from scala.collection.immutable.VectorPointer
scala.collection.immutable.VectorPointer.initFrom, scala.collection.immutable.VectorPointer.initFrom, scala.collection.immutable.VectorPointer.getElem, scala.collection.immutable.VectorPointer.gotoPos, scala.collection.immutable.VectorPointer.gotoNextBlockStart, scala.collection.immutable.VectorPointer.gotoNextBlockStartWritable, scala.collection.immutable.VectorPointer.copyOf, scala.collection.immutable.VectorPointer.nullSlotAndCopy, scala.collection.immutable.VectorPointer.stabilize, scala.collection.immutable.VectorPointer.gotoPosWritable0, scala.collection.immutable.VectorPointer.gotoPosWritable1, scala.collection.immutable.VectorPointer.copyRange, scala.collection.immutable.VectorPointer.gotoFreshPosWritable0, scala.collection.immutable.VectorPointer.gotoFreshPosWritable1, scala.collection.immutable.VectorPointer.debug
Methods inherited from Iterator
take, drop, slice, map, ++, flatMap, filter, filterNot, partialMap, takeWhile, partition, dropWhile, zip, padTo, zipWithIndex, zipAll, foreach, forall, exists, contains, find, indexWhere, indexOf, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, reduceLeftOption, reduceRightOption, buffered, grouped, sliding, length, duplicate, patch, copyToArray, copyToArray, copyToArray, copyToBuffer, toList, toStream, toSeq, mkString, mkString, mkString, addString, addString, addString, toString, append, findIndexOf, collect, counted, readInto, readInto, readInto
Methods inherited from AnyRef
getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def hasNext : Boolean
Does this iterator provide another element?
Overrides
Iterator.hasNext

def next : A
Returns the next element of this iterator.
Overrides
Iterator.next

@inline

def foreach0[U](f : (A) => U) : Unit