abstract class IntIterator extends AbstractIterator[Int]
Iterator over a collection of primitive int value; basically overrides all inherited methods to avoid (un)boxing.
- Self Type
- IntIterator
- Note
No guarantee is given what will happen if
nextis called afterhasNextwould return false.
- Alphabetic
- By Inheritance
- IntIterator
- AbstractIterator
- Iterator
- TraversableOnce
- GenTraversableOnce
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new IntIterator()
Type Members
-
class
GroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[Seq[B]]
- Definition Classes
- Iterator
Abstract Value Members
-
abstract
def
hasNext: Boolean
- Definition Classes
- Iterator
-
abstract
def
next(): Int
Returns the next value if
hasNexthas returnedtrue; if hasNext has returnedfalseandnextis called, the result is undefined.Returns the next value if
hasNexthas returnedtrue; if hasNext has returnedfalseandnextis called, the result is undefined. The method may throw any exception, e.g., anNullPointerException, or just return the last value; however, the behavior is undefined and subject to change without notice!- Definition Classes
- IntIterator → Iterator
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
++[B >: Int](that: ⇒ GenTraversableOnce[B]): Iterator[B]
- Definition Classes
- Iterator
-
def
/:[B](z: B)(op: (B, Int) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
:\[B](z: B)(op: (Int, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
addString(b: StringBuilder): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, sep: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
aggregate[B](z: ⇒ B)(seqop: (B, Int) ⇒ B, combop: (B, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
buffered: BufferedIterator[Int]
- Definition Classes
- Iterator
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
collect[B](pf: PartialFunction[Int, B]): Iterator[B]
- Definition Classes
- Iterator
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
collecthas changed. The previous behavior can be reproduced withtoSeq.
-
def
collectFirst[B](pf: PartialFunction[Int, B]): Option[B]
- Definition Classes
- TraversableOnce
- def contains(i: Int): Boolean
-
def
contains(elem: Any): Boolean
- Definition Classes
- Iterator
-
def
copyToArray(size: Int): Array[Int]
Copies all elements to a new array of the given size.
Copies all elements to a new array of the given size.
- Note
This method should be overwritten, when the underlying collection is already any array and more efficient operation, aka System.arrayCopy can be used.
-
def
copyToArray[B >: Int](xs: Array[B], start: Int, len: Int): Unit
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: Int](xs: Array[B]): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: Int](xs: Array[B], start: Int): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToBuffer[B >: Int](dest: Buffer[B]): Unit
- Definition Classes
- TraversableOnce
-
def
corresponds[B](that: GenTraversableOnce[B])(p: (Int, B) ⇒ Boolean): Boolean
- Definition Classes
- Iterator
-
def
count(p: (Int) ⇒ Boolean): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
drop(n: Int): Iterator[Int]
- Definition Classes
- Iterator
-
def
dropWhile(p: (Int) ⇒ Boolean): Iterator[Int]
- Definition Classes
- Iterator
-
def
duplicate: (Iterator[Int], Iterator[Int])
- Definition Classes
- Iterator
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
exists(p: (Int) ⇒ Boolean): Boolean
- Definition Classes
- IntIterator → Iterator → TraversableOnce → GenTraversableOnce
-
final
def
filter(p: (Int) ⇒ Boolean): IntIterator
- Definition Classes
- IntIterator → Iterator
-
def
filterNot(p: (Int) ⇒ Boolean): Iterator[Int]
- Definition Classes
- Iterator
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
find(p: (Int) ⇒ Boolean): Option[Int]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
- def flatMap[T](f: (Int) ⇒ RefIterator[T]): RefIterator[T]
- def flatMap(f: (Int) ⇒ IntIterator): IntIterator
-
def
flatMap[B](f: (Int) ⇒ GenTraversableOnce[B]): Iterator[B]
- Definition Classes
- Iterator
-
def
fold[A1 >: Int](z: A1)(op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
- def foldLeft(start: Int)(f: (Int, Int) ⇒ Int): Int
-
def
foldLeft[B](start: B)(f: (B, Int) ⇒ B): B
- Definition Classes
- IntIterator → TraversableOnce → GenTraversableOnce
-
def
foldRight[B](z: B)(op: (Int, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
forall(p: (Int) ⇒ Boolean): Boolean
- Definition Classes
- IntIterator → Iterator → TraversableOnce → GenTraversableOnce
-
def
foreach[U](f: (Int) ⇒ U): Unit
- Definition Classes
- IntIterator → Iterator → TraversableOnce → GenTraversableOnce
- def foreachWhile[U](p: (Int) ⇒ Boolean)(f: (Int) ⇒ U): Unit
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
grouped[B >: Int](size: Int): GroupedIterator[B]
- Definition Classes
- Iterator
-
def
hasDefiniteSize: Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
indexOf[B >: Int](elem: B, from: Int): Int
- Definition Classes
- Iterator
-
def
indexOf[B >: Int](elem: B): Int
- Definition Classes
- Iterator
-
def
indexWhere(p: (Int) ⇒ Boolean, from: Int): Int
- Definition Classes
- Iterator
-
def
indexWhere(p: (Int) ⇒ Boolean): Int
- Definition Classes
- Iterator
-
def
isEmpty: Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isTraversableAgain: Boolean
- Definition Classes
- Iterator → GenTraversableOnce
-
def
length: Int
- Definition Classes
- Iterator
-
def
map[T](f: (Int) ⇒ T): RefIterator[T]
- Definition Classes
- IntIterator → Iterator
- def map(f: (Int) ⇒ Long): LongIterator
- def map(f: (Int) ⇒ Int): IntIterator
-
def
max[B >: Int](implicit cmp: Ordering[B]): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
maxBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
min[B >: Int](implicit cmp: Ordering[B]): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
minBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString: String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(sep: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(start: String, sep: String, end: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
nonEmpty: Boolean
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
padTo[A1 >: Int](len: Int, elem: A1): Iterator[A1]
- Definition Classes
- Iterator
-
def
partition(p: (Int) ⇒ Boolean): (Iterator[Int], Iterator[Int])
- Definition Classes
- Iterator
-
def
patch[B >: Int](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
- Definition Classes
- Iterator
-
def
product[B >: Int](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduce[A1 >: Int](op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceLeft[B >: Int](op: (B, Int) ⇒ B): B
- Definition Classes
- TraversableOnce
-
def
reduceLeftOption[B >: Int](op: (B, Int) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceOption[A1 >: Int](op: (A1, A1) ⇒ A1): Option[A1]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRight[B >: Int](op: (Int, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRightOption[B >: Int](op: (Int, B) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reversed: List[Int]
- Attributes
- protected[this]
- Definition Classes
- TraversableOnce
-
def
sameElements(that: Iterator[_]): Boolean
- Definition Classes
- Iterator
-
def
sameValues(that: IntIterator): Boolean
Compares the returned values to check if the iteration order is the same.
Compares the returned values to check if the iteration order is the same.
Both iterators may be consumed up to an arbitrary point.
-
def
scanLeft[B](z: B)(op: (B, Int) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
scanRight[B](z: B)(op: (Int, B) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
seq: Iterator[Int]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
size: Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
sizeHintIfCheap: Int
- Attributes
- protected[scala.collection]
- Definition Classes
- GenTraversableOnce
-
def
slice(from: Int, until: Int): Iterator[Int]
- Definition Classes
- Iterator
-
def
sliceIterator(from: Int, until: Int): Iterator[Int]
- Attributes
- protected
- Definition Classes
- Iterator
-
def
sliding[B >: Int](size: Int, step: Int): GroupedIterator[B]
- Definition Classes
- Iterator
-
def
span(p: (Int) ⇒ Boolean): (Iterator[Int], Iterator[Int])
- Definition Classes
- Iterator
-
def
sum[B >: Int](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
take(n: Int): Iterator[Int]
- Definition Classes
- Iterator
-
def
takeWhile(p: (Int) ⇒ Boolean): Iterator[Int]
- Definition Classes
- Iterator
-
def
to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Int, Col[Int]]): Col[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toArray: Array[Int]
- Note
This method, as well as the generic
toArrayshould be overwritten when the size is known.
-
def
toArray[B >: Int](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toBuffer[B >: Int]: Buffer[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
- def toChain: Chain[Int]
-
def
toIndexedSeq: IndexedSeq[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterable: Iterable[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterator: Iterator[Int]
- Definition Classes
- Iterator → GenTraversableOnce
-
def
toList: List[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toMap[T, U](implicit ev: <:<[Int, (T, U)]): Map[T, U]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSeq: Seq[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
- def toSet: IntTrieSet
-
def
toSet[B >: Int]: Set[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSortedSet: IntArraySet
- Note
This method should be overwritten, when the underlying collection is already sorted.
-
def
toStream: Stream[Int]
- Definition Classes
- Iterator → GenTraversableOnce
-
def
toString(): String
- Definition Classes
- Iterator → AnyRef → Any
-
def
toTraversable: Traversable[Int]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
toVector: Vector[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
withFilter(p: (Int) ⇒ Boolean): IntIterator
- Definition Classes
- IntIterator → Iterator
-
def
zip[B](that: Iterator[B]): Iterator[(Int, B)]
- Definition Classes
- Iterator
-
def
zipAll[B, A1 >: Int, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]
- Definition Classes
- Iterator
-
def
zipWithIndex: Iterator[(Int, Int)]
- Definition Classes
- Iterator