EntryIterator

dotty.tools.dotc.util.HashSet.EntryIterator
abstract class EntryIterator extends Iterator[T]

Attributes

Graph
Supertypes
trait Iterator[T]
trait IterableOnce[T]
class Object
trait Matchable
class Any
Show all

Members list

Type members

Inherited classlikes

class GroupedIterator[B >: A](self: Iterator[B], size: Int, step: Int)

Attributes

Inherited from:
Iterator
Supertypes
class AbstractIterator[Seq[B]]
trait Iterator[Seq[B]]
trait IterableOnce[Seq[B]]
class Object
trait Matchable
class Any
Show all

Value members

Abstract methods

def entry(idx: Int): T | Null

Concrete methods

def next(): T

Inherited methods

final def ++[B >: T](xs: => IterableOnce[B]): Iterator[B]

Attributes

Inherited from:
Iterator
final def addString(b: StringBuilder): b.type

Attributes

Inherited from:
IterableOnceOps
final def addString(b: StringBuilder, sep: String): b.type

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
Iterator

Attributes

Inherited from:
Iterator

Attributes

Inherited from:
IterableOnceOps
def concat[B >: T](xs: => IterableOnce[B]): Iterator[B]

Attributes

Inherited from:
Iterator
def contains(elem: Any): Boolean

Attributes

Inherited from:
Iterator
def copyToArray[B >: T](xs: Array[B], start: Int, len: Int): Int

Attributes

Inherited from:
IterableOnceOps
def copyToArray[B >: T](xs: Array[B], start: Int): Int

Attributes

Inherited from:
IterableOnceOps
def copyToArray[B >: T](xs: Array[B]): Int

Attributes

Inherited from:
IterableOnceOps
def corresponds[B](that: IterableOnce[B])(p: (T, B) => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
def count(p: T => Boolean): Int

Attributes

Inherited from:
IterableOnceOps
def distinct: Iterator[T]

Attributes

Inherited from:
Iterator
def distinctBy[B](f: T => B): Iterator[T]

Attributes

Inherited from:
Iterator
def drop(n: Int): Iterator[T]

Attributes

Inherited from:
Iterator
def dropWhile(p: T => Boolean): Iterator[T]

Attributes

Inherited from:
Iterator
def duplicate: (Iterator[T], Iterator[T])

Attributes

Inherited from:
Iterator
def exists(p: T => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
def filter(p: T => Boolean): Iterator[T]

Attributes

Inherited from:
Iterator
def filterNot(p: T => Boolean): Iterator[T]

Attributes

Inherited from:
Iterator
def find(p: T => Boolean): Option[T]

Attributes

Inherited from:
IterableOnceOps
def flatMap[B](f: T => IterableOnce[B]): Iterator[B]

Attributes

Inherited from:
Iterator
def flatten[B](implicit ev: T => IterableOnce[B]): Iterator[B]

Attributes

Inherited from:
Iterator
def fold[A1 >: T](z: A1)(op: (A1, A1) => A1): A1

Attributes

Inherited from:
IterableOnceOps
def foldLeft[B](z: B)(op: (B, T) => B): B

Attributes

Inherited from:
IterableOnceOps
def foldRight[B](z: B)(op: (T, B) => B): B

Attributes

Inherited from:
IterableOnceOps
def forall(p: T => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
def foreach[U](f: T => U): Unit

Attributes

Inherited from:
IterableOnceOps
def grouped[B >: T](size: Int): GroupedIterator[B]

Attributes

Inherited from:
Iterator
def indexOf[B >: T](elem: B, from: Int): Int

Attributes

Inherited from:
Iterator
def indexOf[B >: T](elem: B): Int

Attributes

Inherited from:
Iterator
def indexWhere(p: T => Boolean, from: Int): Int

Attributes

Inherited from:
Iterator
override def isEmpty: Boolean

Attributes

Definition Classes
Inherited from:
Iterator

Attributes

Inherited from:
IterableOnceOps
final def iterator: Iterator[T]

Attributes

Inherited from:
Iterator
def knownSize: Int

Attributes

Inherited from:
IterableOnce
final def length: Int

Attributes

Inherited from:
Iterator
def map[B](f: T => B): Iterator[B]

Attributes

Inherited from:
Iterator
def max[B >: T](implicit ord: Ordering[B]): T

Attributes

Inherited from:
IterableOnceOps
def maxBy[B](f: T => B)(implicit cmp: Ordering[B]): T

Attributes

Inherited from:
IterableOnceOps
def maxByOption[B](f: T => B)(implicit cmp: Ordering[B]): Option[T]

Attributes

Inherited from:
IterableOnceOps
def maxOption[B >: T](implicit ord: Ordering[B]): Option[T]

Attributes

Inherited from:
IterableOnceOps
def min[B >: T](implicit ord: Ordering[B]): T

Attributes

Inherited from:
IterableOnceOps
def minBy[B](f: T => B)(implicit cmp: Ordering[B]): T

Attributes

Inherited from:
IterableOnceOps
def minByOption[B](f: T => B)(implicit cmp: Ordering[B]): Option[T]

Attributes

Inherited from:
IterableOnceOps
def minOption[B >: T](implicit ord: Ordering[B]): Option[T]

Attributes

Inherited from:
IterableOnceOps
final def mkString: String

Attributes

Inherited from:
IterableOnceOps
final def mkString(sep: String): String

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps
def nextOption(): Option[T]

Attributes

Inherited from:
Iterator

Attributes

Inherited from:
IterableOnceOps
def padTo[B >: T](len: Int, elem: B): Iterator[B]

Attributes

Inherited from:
Iterator
def partition(p: T => Boolean): (Iterator[T], Iterator[T])

Attributes

Inherited from:
Iterator

Attributes

Inherited from:
Iterator
def product[B >: T](implicit num: Numeric[B]): B

Attributes

Inherited from:
IterableOnceOps
def reduce[B >: T](op: (B, B) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceLeft[B >: T](op: (B, T) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceLeftOption[B >: T](op: (B, T) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
def reduceOption[B >: T](op: (B, B) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
def reduceRight[B >: T](op: (T, B) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceRightOption[B >: T](op: (T, B) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
protected def reversed: Iterable[T]

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
Iterator
def scanLeft[B](z: B)(op: (B, T) => B): Iterator[B]

Attributes

Inherited from:
Iterator
def size: Int

Attributes

Inherited from:
IterableOnceOps
def slice(from: Int, until: Int): Iterator[T]

Attributes

Inherited from:
Iterator

Attributes

Inherited from:
Iterator
def span(p: T => Boolean): (Iterator[T], Iterator[T])

Attributes

Inherited from:
Iterator
def splitAt(n: Int): (Iterator[T], Iterator[T])

Attributes

Inherited from:
IterableOnceOps
def stepper[S <: Stepper[_]](implicit shape: StepperShape[T, S]): S

Attributes

Inherited from:
IterableOnce
def sum[B >: T](implicit num: Numeric[B]): B

Attributes

Inherited from:
IterableOnceOps
def take(n: Int): Iterator[T]

Attributes

Inherited from:
Iterator
def takeWhile(p: T => Boolean): Iterator[T]

Attributes

Inherited from:
Iterator
override def tapEach[U](f: T => U): Iterator[T]

Attributes

Definition Classes
Inherited from:
Iterator
def to[C1](factory: Factory[T, C1]): C1

Attributes

Inherited from:
IterableOnceOps
def toArray[B >: T : ClassTag]: Array[B]

Attributes

Inherited from:
IterableOnceOps
final def toBuffer[B >: T]: Buffer[B]

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps
def toList: List[T]

Attributes

Inherited from:
IterableOnceOps
def toMap[K, V](implicit ev: T <:< (K, V)): Map[K, V]

Attributes

Inherited from:
IterableOnceOps
def toSeq: Seq[T]

Attributes

Inherited from:
IterableOnceOps
def toSet[B >: T]: Set[B]

Attributes

Inherited from:
IterableOnceOps
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Iterator -> Any
Inherited from:
Iterator
def toVector: Vector[T]

Attributes

Inherited from:
IterableOnceOps
def withFilter(p: T => Boolean): Iterator[T]

Attributes

Inherited from:
Iterator
def zip[B](that: IterableOnce[B]): Iterator[(T, B)]

Attributes

Inherited from:
Iterator
def zipAll[A1 >: T, B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]

Attributes

Inherited from:
Iterator

Attributes

Inherited from:
Iterator

Deprecated and Inherited methods

final def /:[B](z: B)(op: (B, T) => B): B

Attributes

Deprecated
[Since version 2.13.0] Use foldLeft instead of /:
Inherited from:
IterableOnceOps
final def :\[B](z: B)(op: (T, B) => B): B

Attributes

Deprecated
[Since version 2.13.0] Use foldRight instead of :\\
Inherited from:
IterableOnceOps
def aggregate[B](z: => B)(seqop: (B, T) => B, combop: (B, B) => B): B

Attributes

Deprecated
[Since version 2.13.0] `aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.
Inherited from:
IterableOnceOps
final def copyToBuffer[B >: T](dest: Buffer[B]): Unit

Attributes

Deprecated
[Since version 2.13.0] Use `dest ++= coll` instead
Inherited from:
IterableOnceOps
final override def hasDefiniteSize: Boolean

Attributes

Deprecated
[Since version 2.13.0] hasDefiniteSize on Iterator is the same as isEmpty
Definition Classes
Inherited from:
Iterator
def scanRight[B](z: B)(op: (T, B) => B): Iterator[B]

Attributes

Deprecated
[Since version 2.13.0] Call scanRight on an Iterable instead.
Inherited from:
Iterator
def seq: Iterator.this.type

Attributes

Deprecated
[Since version 2.13.0] Iterator.seq always returns the iterator itself
Inherited from:
Iterator
final def toIterator: Iterator[T]

Attributes

Deprecated
[Since version 2.13.0] Use .iterator instead of .toIterator
Inherited from:
IterableOnceOps
final def toStream: Stream[T]

Attributes

Deprecated
[Since version 2.13.0] Use .to(LazyList) instead of .toStream
Inherited from:
IterableOnceOps