abstract class IntIterator extends Iterator[Int]
An iterator over Int (required to prevent boxing the result of next).
- Source
- AliasingFrame.scala
- Alphabetic
- By Inheritance
- IntIterator
- Iterator
- IterableOnceOps
- IterableOnce
- AnyRef
- Any
- by iterableOnceExtensionMethods
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new IntIterator()
Type Members
- class GroupedIterator[B >: A] extends AbstractIterator[collection.immutable.Seq[B]]
- Definition Classes
- Iterator
Abstract Value Members
- abstract def hasNext: Boolean
- Definition Classes
- IntIterator → Iterator
- abstract def next(): Int
- Definition Classes
- IntIterator → Iterator
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from IntIterator toany2stringadd[IntIterator] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
- final def ++[B >: Int](xs: ⇒ collection.IterableOnce[B]): collection.Iterator[B]
- Definition Classes
- Iterator
- Annotations
- @inline()
- def ->[B](y: B): (IntIterator, B)
- Implicit
- This member is added by an implicit conversion from IntIterator toArrowAssoc[IntIterator] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
- Definition Classes
- IterableOnceOps
- def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
- Definition Classes
- IterableOnceOps
- def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): b.type
- Definition Classes
- IterableOnceOps
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def buffered: collection.BufferedIterator[Int]
- Definition Classes
- Iterator
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws(classOf[java.lang.CloneNotSupportedException])
- def collect[B](pf: PartialFunction[Int, B]): collection.Iterator[B]
- Definition Classes
- Iterator → IterableOnceOps
- def collectFirst[B](pf: PartialFunction[Int, B]): Option[B]
- Definition Classes
- IterableOnceOps
- def concat[B >: Int](xs: ⇒ collection.IterableOnce[B]): collection.Iterator[B]
- Definition Classes
- Iterator
- def contains(elem: Any): Boolean
- Definition Classes
- Iterator
- def copyToArray[B >: Int](xs: Array[B], start: Int, len: Int): xs.type
- Definition Classes
- IterableOnceOps
- def copyToArray[B >: Int](xs: Array[B], start: Int): xs.type
- Definition Classes
- IterableOnceOps
- def count(p: (Int) ⇒ Boolean): Int
- Definition Classes
- IterableOnceOps
- def distinct: collection.Iterator[Int]
- Definition Classes
- Iterator
- def distinctBy[B](f: (Int) ⇒ B): collection.Iterator[Int]
- Definition Classes
- Iterator
- def drop(n: Int): collection.Iterator[Int]
- Definition Classes
- Iterator → IterableOnceOps
- def dropWhile(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Definition Classes
- Iterator → IterableOnceOps
- def duplicate: (collection.Iterator[Int], collection.Iterator[Int])
- Definition Classes
- Iterator
- def ensuring(cond: (IntIterator) ⇒ Boolean, msg: ⇒ Any): IntIterator
- Implicit
- This member is added by an implicit conversion from IntIterator toEnsuring[IntIterator] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: (IntIterator) ⇒ Boolean): IntIterator
- Implicit
- This member is added by an implicit conversion from IntIterator toEnsuring[IntIterator] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean, msg: ⇒ Any): IntIterator
- Implicit
- This member is added by an implicit conversion from IntIterator toEnsuring[IntIterator] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean): IntIterator
- Implicit
- This member is added by an implicit conversion from IntIterator toEnsuring[IntIterator] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- 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
- IterableOnceOps
- def filter(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Definition Classes
- Iterator → IterableOnceOps
- def filterNot(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Definition Classes
- Iterator → IterableOnceOps
- 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
- IterableOnceOps
- def flatMap[B](f: (Int) ⇒ collection.IterableOnce[B]): collection.Iterator[B]
- Definition Classes
- Iterator → IterableOnceOps
- def flatten[B](implicit ev: (Int) ⇒ collection.IterableOnce[B]): collection.Iterator[B]
- Definition Classes
- Iterator → IterableOnceOps
- def fold[A1 >: Int](z: A1)(op: (A1, A1) ⇒ A1): A1
- Definition Classes
- IterableOnceOps
- def foldLeft[B](z: B)(op: (B, Int) ⇒ B): B
- Definition Classes
- IterableOnceOps
- def foldRight[B](z: B)(op: (Int, B) ⇒ B): B
- Definition Classes
- IterableOnceOps
- def forall(p: (Int) ⇒ Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def foreach[U](f: (Int) ⇒ U): Unit
- Definition Classes
- IterableOnceOps
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from IntIterator toStringFormat[IntIterator] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
- final def getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def grouped[B >: Int](size: Int): GroupedIterator[B]
- Definition Classes
- Iterator
- 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 isEmpty: Boolean
- Definition Classes
- IterableOnceOps
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def iterator: collection.Iterator[Int]
- Definition Classes
- Iterator → IterableOnce
- def knownSize: Int
- Definition Classes
- IterableOnceOps
- final def length: Int
- Definition Classes
- Iterator
- def map[B](f: (Int) ⇒ B): collection.Iterator[B]
- Definition Classes
- Iterator → IterableOnceOps
- def max[B >: Int](implicit ord: math.Ordering[B]): Int
- Definition Classes
- IterableOnceOps
- def maxBy[B](f: (Int) ⇒ B)(implicit cmp: math.Ordering[B]): Int
- Definition Classes
- IterableOnceOps
- def maxByOption[B](f: (Int) ⇒ B)(implicit cmp: math.Ordering[B]): Option[Int]
- Definition Classes
- IterableOnceOps
- def maxOption[B >: Int](implicit ord: math.Ordering[B]): Option[Int]
- Definition Classes
- IterableOnceOps
- def min[B >: Int](implicit ord: math.Ordering[B]): Int
- Definition Classes
- IterableOnceOps
- def minBy[B](f: (Int) ⇒ B)(implicit cmp: math.Ordering[B]): Int
- Definition Classes
- IterableOnceOps
- def minByOption[B](f: (Int) ⇒ B)(implicit cmp: math.Ordering[B]): Option[Int]
- Definition Classes
- IterableOnceOps
- def minOption[B >: Int](implicit ord: math.Ordering[B]): Option[Int]
- Definition Classes
- IterableOnceOps
- def mkString: String
- Definition Classes
- IterableOnceOps
- def mkString(sep: String): String
- Definition Classes
- IterableOnceOps
- def mkString(start: String, sep: String, end: String): String
- Definition Classes
- IterableOnceOps
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nextOption(): Option[Int]
- Definition Classes
- Iterator
- def nonEmpty: Boolean
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def patch[B >: Int](from: Int, patchElems: collection.Iterator[B], replaced: Int): collection.Iterator[B]
- Definition Classes
- Iterator
- def product[B >: Int](implicit num: math.Numeric[B]): B
- Definition Classes
- IterableOnceOps
- def reduce[B >: Int](op: (B, B) ⇒ B): B
- Definition Classes
- IterableOnceOps
- def reduceLeft[B >: Int](op: (B, Int) ⇒ B): B
- Definition Classes
- IterableOnceOps
- def reduceLeftOption[B >: Int](op: (B, Int) ⇒ B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceOption[B >: Int](op: (B, B) ⇒ B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceRight[B >: Int](op: (Int, B) ⇒ B): B
- Definition Classes
- IterableOnceOps
- def reduceRightOption[B >: Int](op: (Int, B) ⇒ B): Option[B]
- Definition Classes
- IterableOnceOps
- def reversed: collection.Iterable[Int]
- Attributes
- protected
- Definition Classes
- IterableOnceOps
- def sameElements[B >: Int](that: collection.IterableOnce[B]): Boolean
- Definition Classes
- Iterator
- def scanLeft[B](z: B)(op: (B, Int) ⇒ B): collection.Iterator[B]
- Definition Classes
- Iterator → IterableOnceOps
- def size: Int
- Definition Classes
- IterableOnceOps
- def slice(from: Int, until: Int): collection.Iterator[Int]
- Definition Classes
- Iterator → IterableOnceOps
- def sliceIterator(from: Int, until: Int): collection.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): (collection.Iterator[Int], collection.Iterator[Int])
- Definition Classes
- Iterator → IterableOnceOps
- def sum[B >: Int](implicit num: math.Numeric[B]): B
- Definition Classes
- IterableOnceOps
- final def synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- def take(n: Int): collection.Iterator[Int]
- Definition Classes
- Iterator → IterableOnceOps
- def takeWhile(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Definition Classes
- Iterator → IterableOnceOps
- def to[C1](factory: Factory[Int, C1]): C1
- Definition Classes
- IterableOnceOps
- def toArray[B >: Int](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- IterableOnceOps
- def toIndexedSeq: collection.immutable.IndexedSeq[Int]
- Definition Classes
- IterableOnceOps
- def toList: collection.immutable.List[Int]
- Definition Classes
- IterableOnceOps
- def toMap[K, V](implicit ev: <:<[Int, (K, V)]): Map[K, V]
- Definition Classes
- IterableOnceOps
- def toSeq: collection.immutable.Seq[Int]
- Definition Classes
- IterableOnceOps
- def toSet[B >: Int]: Set[B]
- Definition Classes
- IterableOnceOps
- def toString(): String
- Definition Classes
- Iterator → AnyRef → Any
- def toVector: collection.immutable.Vector[Int]
- Definition Classes
- IterableOnceOps
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws(classOf[java.lang.InterruptedException])
- def withFilter(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Definition Classes
- Iterator
- def zip[B](that: collection.IterableOnce[B]): collection.Iterator[(Int, B)]
- Definition Classes
- Iterator
- def zipAll[A1 >: Int, B](that: collection.IterableOnce[B], thisElem: A1, thatElem: B): collection.Iterator[(A1, B)]
- Definition Classes
- Iterator
- def zipWithIndex: collection.Iterator[(Int, Int)]
- Definition Classes
- Iterator → IterableOnceOps
- def →[B](y: B): (IntIterator, B)
- Implicit
- This member is added by an implicit conversion from IntIterator toArrowAssoc[IntIterator] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
Deprecated Value Members
- def /:[B](z: B)(op: (B, Int) ⇒ B): B
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int])./:(z)(op)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.foldLeft instead of /: on IterableOnce
- final def /:[B](z: B)(op: (B, Int) ⇒ B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldLeft instead of /:
- def :\[B](z: B)(op: (Int, B) ⇒ B): B
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).:\(z)(op)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.foldRight instead of :\ on IterableOnce
- final def :\[B](z: B)(op: (Int, B) ⇒ B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldRight instead of :\
- final def copyToBuffer[B >: Int](dest: Buffer[B]): Unit
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use
dest ++= coll
instead
- def find(p: (Int) ⇒ Boolean): Option[Int]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).find(p)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.find instead of .find on IterableOnce
- def flatMap[B](f: (Int) ⇒ collection.IterableOnce[B]): collection.IterableOnce[B]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).flatMap(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.flatMap instead of .flatMap on IterableOnce or consider requiring an Iterable
- def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).fold(z)(op)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.fold instead of .fold on IterableOnce
- def foldLeft[B](z: B)(op: (B, Int) ⇒ B): B
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).foldLeft(z)(op)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.foldLeft instead of .foldLeft on IterableOnce
- def foldRight[B](z: B)(op: (Int, B) ⇒ B): B
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).foldRight(z)(op)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.foldRight instead of .foldLeft on IterableOnce
- def foreach[U](f: (Int) ⇒ U): Unit
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).foreach(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.foreach(...) instead of .foreach(...) on IterableOnce
- def isEmpty: Boolean
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).isEmpty
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.isEmpty instead of .isEmpty on IterableOnce
- def map[B](f: (Int) ⇒ B): collection.IterableOnce[B]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).map(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.map instead of .map on IterableOnce or consider requiring an Iterable
- def mkString: String
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).mkString
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.mkString instead of .mkString on IterableOnce
- def mkString(sep: String): String
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).mkString(sep)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.mkString instead of .mkString on IterableOnce
- def mkString(start: String, sep: String, end: String): String
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).mkString(start, sep, end)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.mkString instead of .mkString on IterableOnce
- def sameElements[B >: A](that: collection.IterableOnce[B]): Boolean
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).sameElements(that)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.sameElements for sameElements on Iterable or IterableOnce
- def seq: IntIterator.this.type
- Definition Classes
- Iterator
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Iterator.seq always returns the iterator itself
- def to[C1](factory: Factory[Int, C1]): C1
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).to(factory)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use factory.from(it) instead of it.to(factory) for IterableOnce
- def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).toArray(arg0)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use ArrayBuffer.from(it).toArray
- def toBuffer[B >: A]: Buffer[B]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).toBuffer
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use ArrayBuffer.from(it) instead of it.toBuffer
- final def toBuffer[B >: Int]: Buffer[B]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use ArrayBuffer.from(it) instead of it.toBuffer
- final def toIterable: collection.Iterable[Int]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use Iterable.from(it) instead of it.toIterable
- def toIterator: collection.Iterator[Int]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).toIterator
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) toIterator has been renamed to iterator
- final def toIterator: collection.Iterator[Int]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator instead of .toIterator
- def toList: collection.immutable.List[Int]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).toList
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use List.from(it) instead of it.toList
- def toMap[K, V](implicit ev: <:<[Int, (K, V)]): Map[K, V]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).toMap(ev)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use Map.from(it) instead of it.toVector on IterableOnce
- def toSeq: collection.immutable.Seq[Int]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).toSeq
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use Seq.from(it) instead of it.toSeq
- def toSet[B >: A]: Set[B]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).toSet
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use Set.from(it) instead of it.toSet
- def toStream: collection.immutable.Stream[Int]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).toStream
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use Stream.from(it) instead of it.toStream
- final def toStream: collection.immutable.Stream[Int]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use Stream.from(it) instead of it.toStream
- def toVector: collection.immutable.Vector[Int]
- Implicit
- This member is added by an implicit conversion from IntIterator toIterableOnceExtensionMethods[Int] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: IterableOnceExtensionMethods[Int]).toVector
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use Vector.from(it) instead of it.toVector on IterableOnce
The Scala compiler and reflection APIs.