Class

scala.tools.nsc.backend.jvm.analysis

IntIterator

Related Doc: package analysis

Permalink

abstract class IntIterator extends Iterator[Int]

An iterator over Int (required to prevent boxing the result of next).

Source
AliasingFrame.scala
Linear Supertypes
collection.Iterator[Int], collection.TraversableOnce[Int], GenTraversableOnce[Int], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. IntIterator
  2. Iterator
  3. TraversableOnce
  4. GenTraversableOnce
  5. AnyRef
  6. Any
Implicitly
  1. by MonadOps
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  6. by alternateImplicit
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IntIterator()

    Permalink

Type Members

  1. class GroupedIterator[B >: A] extends AbstractIterator[collection.Seq[B]] with collection.Iterator[collection.Seq[B]]

    Permalink
    Definition Classes
    Iterator

Abstract Value Members

  1. abstract def hasNext: Boolean

    Permalink
    Definition Classes
    IntIterator → Iterator
  2. abstract def next(): Int

    Permalink
    Definition Classes
    IntIterator → Iterator

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to any2stringadd[IntIterator] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: Int](that: ⇒ GenTraversableOnce[B]): collection.Iterator[B]

    Permalink
    Definition Classes
    Iterator
  5. def ->[B](y: B): (IntIterator, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to ArrowAssoc[IntIterator] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def /:[B](z: B)(op: (B, Int) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  7. def :\[B](z: B)(op: (Int, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  8. final def ==(arg0: Any): Boolean

    Permalink

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  9. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  10. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  12. def aggregate[B](z: ⇒ B)(seqop: (B, Int) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def asInstanceOf[T0]: T0

    Permalink

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  14. def buffered: collection.BufferedIterator[Int]

    Permalink
    Definition Classes
    Iterator
  15. def clone(): AnyRef

    Permalink

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  16. def collect[B](pf: PartialFunction[Int, B]): collection.Iterator[B]

    Permalink
    Definition Classes
    Iterator
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) collect has changed. The previous behavior can be reproduced with toSeq.

  17. def collectFirst[B](pf: PartialFunction[Int, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  18. def contains(elem: Any): Boolean

    Permalink
    Definition Classes
    Iterator
  19. def copyToArray[B >: Int](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  20. def copyToArray[B >: Int](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def copyToArray[B >: Int](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToBuffer[B >: Int](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  23. def corresponds[B](that: GenTraversableOnce[B])(p: (Int, B) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator
  24. def count(p: (Int) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def drop(n: Int): collection.Iterator[Int]

    Permalink
    Definition Classes
    Iterator
  26. def dropWhile(p: (Int) ⇒ Boolean): collection.Iterator[Int]

    Permalink
    Definition Classes
    Iterator
  27. def duplicate: (collection.Iterator[Int], collection.Iterator[Int])

    Permalink
    Definition Classes
    Iterator
  28. def ensuring(cond: (IntIterator) ⇒ Boolean, msg: ⇒ Any): IntIterator

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to Ensuring[IntIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: (IntIterator) ⇒ Boolean): IntIterator

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to Ensuring[IntIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean, msg: ⇒ Any): IntIterator

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to Ensuring[IntIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: Boolean): IntIterator

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to Ensuring[IntIterator] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. final def eq(arg0: AnyRef): Boolean

    Permalink

    Tests whether the argument (that) is a reference to the receiver object (this).

    Tests whether the argument (that) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  33. def equals(arg0: Any): Boolean

    Permalink

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  34. def exists(p: (Int) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  35. def filter(p: (Int) ⇒ Boolean): collection.Iterator[Int]

    Permalink
    Definition Classes
    Iterator
  36. def filterNot(p: (Int) ⇒ Boolean): collection.Iterator[Int]

    Permalink
    Definition Classes
    Iterator
  37. def finalize(): Unit

    Permalink

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  38. def find(p: (Int) ⇒ Boolean): Option[Int]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  39. def flatMap[B](f: (Int) ⇒ GenTraversableOnce[B]): collection.Iterator[B]

    Permalink
    Definition Classes
    Iterator
  40. def fold[A1 >: Int](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def foldLeft[B](z: B)(op: (B, Int) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  42. def foldRight[B](z: B)(op: (Int, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def forall(p: (Int) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  44. def foreach[U](f: (Int) ⇒ U): Unit

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  45. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to StringFormat[IntIterator] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  46. final def getClass(): Class[_]

    Permalink

    Returns the runtime class representation of the object.

    Returns the runtime class representation of the object.

    returns

    a class object corresponding to the runtime type of the receiver.

    Definition Classes
    AnyRef → Any
  47. def grouped[B >: Int](size: Int): GroupedIterator[B]

    Permalink
    Definition Classes
    Iterator
  48. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  49. def hashCode(): Int

    Permalink

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  50. def indexOf[B >: Int](elem: B, from: Int): Int

    Permalink
    Definition Classes
    Iterator
  51. def indexOf[B >: Int](elem: B): Int

    Permalink
    Definition Classes
    Iterator
  52. def indexWhere(p: (Int) ⇒ Boolean, from: Int): Int

    Permalink
    Definition Classes
    Iterator
  53. def indexWhere(p: (Int) ⇒ Boolean): Int

    Permalink
    Definition Classes
    Iterator
  54. def isEmpty: Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  55. final def isInstanceOf[T0]: Boolean

    Permalink

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  56. def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  57. def length: Int

    Permalink
    Definition Classes
    Iterator
  58. def map[B](f: (Int) ⇒ B): collection.Iterator[B]

    Permalink
    Definition Classes
    Iterator
  59. def max[B >: Int](implicit cmp: Ordering[B]): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  60. def maxBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  61. def min[B >: Int](implicit cmp: Ordering[B]): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def minBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. final def ne(arg0: AnyRef): Boolean

    Permalink

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  67. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  68. final def notify(): Unit

    Permalink

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  69. final def notifyAll(): Unit

    Permalink

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  70. def padTo[A1 >: Int](len: Int, elem: A1): collection.Iterator[A1]

    Permalink
    Definition Classes
    Iterator
  71. def partition(p: (Int) ⇒ Boolean): (collection.Iterator[Int], collection.Iterator[Int])

    Permalink
    Definition Classes
    Iterator
  72. def patch[B >: Int](from: Int, patchElems: collection.Iterator[B], replaced: Int): collection.Iterator[B]

    Permalink
    Definition Classes
    Iterator
  73. def product[B >: Int](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def reduce[A1 >: Int](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def reduceLeft[B >: Int](op: (B, Int) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  76. def reduceLeftOption[B >: Int](op: (B, Int) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def reduceOption[A1 >: Int](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def reduceRight[B >: Int](op: (Int, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def reduceRightOption[B >: Int](op: (Int, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def reversed: List[Int]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  81. def sameElements(that: collection.Iterator[_]): Boolean

    Permalink
    Definition Classes
    Iterator
  82. def scanLeft[B](z: B)(op: (B, Int) ⇒ B): collection.Iterator[B]

    Permalink
    Definition Classes
    Iterator
  83. def scanRight[B](z: B)(op: (Int, B) ⇒ B): collection.Iterator[B]

    Permalink
    Definition Classes
    Iterator
  84. def seq: collection.Iterator[Int]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  85. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def slice(from: Int, until: Int): collection.Iterator[Int]

    Permalink
    Definition Classes
    Iterator
  87. def sliceIterator(from: Int, until: Int): collection.Iterator[Int]

    Permalink
    Attributes
    protected
    Definition Classes
    Iterator
  88. def sliding[B >: Int](size: Int, step: Int): GroupedIterator[B]

    Permalink
    Definition Classes
    Iterator
  89. def span(p: (Int) ⇒ Boolean): (collection.Iterator[Int], collection.Iterator[Int])

    Permalink
    Definition Classes
    Iterator
  90. def sum[B >: Int](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  92. def take(n: Int): collection.Iterator[Int]

    Permalink
    Definition Classes
    Iterator
  93. def takeWhile(p: (Int) ⇒ Boolean): collection.Iterator[Int]

    Permalink
    Definition Classes
    Iterator
  94. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Int, Col[Int]]): Col[Int]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def toArray[B >: Int](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def toBuffer[B >: Int]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def toIndexedSeq: collection.immutable.IndexedSeq[Int]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toIterable: collection.Iterable[Int]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def toIterator: collection.Iterator[Int]

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  100. def toList: List[Int]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def toMap[T, U](implicit ev: <:<[Int, (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def toSeq: collection.Seq[Int]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def toSet[B >: Int]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def toStream: collection.immutable.Stream[Int]

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  105. def toString(): String

    Permalink

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    Iterator → AnyRef → Any
  106. def toTraversable: collection.Traversable[Int]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  107. def toVector: Vector[Int]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  109. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  110. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  111. def withFilter(p: (Int) ⇒ Boolean): collection.Iterator[Int]

    Permalink
    Definition Classes
    Iterator
  112. def zip[B](that: collection.Iterator[B]): collection.Iterator[(Int, B)]

    Permalink
    Definition Classes
    Iterator
  113. def zipAll[B, A1 >: Int, B1 >: B](that: collection.Iterator[B], thisElem: A1, thatElem: B1): collection.Iterator[(A1, B1)]

    Permalink
    Definition Classes
    Iterator
  114. def zipWithIndex: collection.Iterator[(Int, Int)]

    Permalink
    Definition Classes
    Iterator
  115. def [B](y: B): (IntIterator, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to ArrowAssoc[IntIterator] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (Int) ⇒ Boolean): collection.TraversableOnce[Int]

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[Int]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (Int) ⇒ GenTraversableOnce[B]): collection.TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[Int]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (Int) ⇒ B): collection.TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[Int]).map(f)
    Definition Classes
    MonadOps
  4. def withFilter(p: (Int) ⇒ Boolean): collection.Iterator[Int]

    Permalink
    Implicit information
    This member is added by an implicit conversion from IntIterator to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[Int]).withFilter(p)
    Definition Classes
    MonadOps

Inherited from collection.Iterator[Int]

Inherited from collection.TraversableOnce[Int]

Inherited from GenTraversableOnce[Int]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion MonadOps from IntIterator to MonadOps[Int]

Inherited by implicit conversion any2stringadd from IntIterator to any2stringadd[IntIterator]

Inherited by implicit conversion StringFormat from IntIterator to StringFormat[IntIterator]

Inherited by implicit conversion Ensuring from IntIterator to Ensuring[IntIterator]

Inherited by implicit conversion ArrowAssoc from IntIterator to ArrowAssoc[IntIterator]

Inherited by implicit conversion alternateImplicit from IntIterator to ForceImplicitAmbiguity

Ungrouped