Packages

t

scalax.collection.generic

GroupIterator

trait GroupIterator[A] extends Iterator[A]

Iterator facilitating group-wise iteration over two ore more levels. Each level is represented by an inner iterator. Interactions between these levels are handled internally thus the implementor just needs to define the individual level iterators. Level iterator implementations will typically be inner objects inheriting from the public inner traits of this trait.

This trait is not graph-specific.

A

Simple or composite type of elements being subject to the iteration. For instance, a two-level iteration could expose just the elements of the inner loop or both the outer and the inner loop elements as a tuple.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GroupIterator
  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

Type Members

  1. class GroupedIterator[B >: A] extends scala.collection.AbstractIterator[Seq[B]] with Iterator[Seq[B]]
    Definition Classes
    Iterator
  2. trait InnermostIterator[A] extends LevelIterator[A] with InnermostIteratorDecl

    Iterator for the bottom level group.

    Iterator for the bottom level group. For instance, if we iterate over cities grouped by countries, the implementation of this trait will correspond to the city iterator.

  3. sealed trait InnermostIteratorDecl extends AnyRef
    Attributes
    protected
  4. sealed trait LevelIterator[A] extends Iterator[A]
    Attributes
    protected
  5. trait MidIterator[A, I, O] extends LevelIterator[A] with OutermostIteratorDecl with InnermostIteratorDecl

    Iterator for mid level groups.

    Iterator for mid level groups. For instance, if we iterate over cities grouped by countries 'and' continents, the implementation of this trait will correspond to the country iterator.

  6. trait OutermostIterator[A] extends LevelIterator[A] with OutermostIteratorDecl

    Iterator for the top level group.

    Iterator for the top level group. For instance, if we iterate over cities grouped by countries, the implementation of this trait will correspond to the country iterator.

  7. sealed trait OutermostIteratorDecl extends AnyRef
    Attributes
    protected

Abstract Value Members

  1. abstract def hasNext: Boolean
    Definition Classes
    Iterator
  2. abstract def next(): A
    Definition Classes
    Iterator

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to any2stringadd[GroupIterator[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: A](that: ⇒ GenTraversableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  5. def ->[B](y: B): (GroupIterator[A], B)
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to ArrowAssoc[GroupIterator[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def /:[B](z: B)(op: (B, A) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  7. def :\[B](z: B)(op: (A, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  10. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  12. def aggregate[B](z: ⇒ B)(seqop: (B, A) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def buffered: BufferedIterator[A]
    Definition Classes
    Iterator
  15. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  16. def collect[B](pf: PartialFunction[A, B]): Iterator[B]
    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[A, B]): Option[B]
    Definition Classes
    TraversableOnce
  18. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  19. def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  20. def copyToArray[B >: A](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def copyToArray[B >: A](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  23. def corresponds[B](that: GenTraversableOnce[B])(p: (A, B) ⇒ Boolean): Boolean
    Definition Classes
    Iterator
  24. def count(p: (A) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def drop(n: Int): Iterator[A]
    Definition Classes
    Iterator
  26. def dropWhile(p: (A) ⇒ Boolean): Iterator[A]
    Definition Classes
    Iterator
  27. def duplicate: (Iterator[A], Iterator[A])
    Definition Classes
    Iterator
  28. def ensuring(cond: (GroupIterator[A]) ⇒ Boolean, msg: ⇒ Any): GroupIterator[A]
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to Ensuring[GroupIterator[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: (GroupIterator[A]) ⇒ Boolean): GroupIterator[A]
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to Ensuring[GroupIterator[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean, msg: ⇒ Any): GroupIterator[A]
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to Ensuring[GroupIterator[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: Boolean): GroupIterator[A]
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to Ensuring[GroupIterator[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  34. def exists(p: (A) ⇒ Boolean): Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  35. def filter(p: (A) ⇒ Boolean): Iterator[A]
    Definition Classes
    Iterator
  36. def filterNot(p: (A) ⇒ Boolean): Iterator[A]
    Definition Classes
    Iterator
  37. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  38. def find(p: (A) ⇒ Boolean): Option[A]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  39. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  40. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def foldLeft[B](z: B)(op: (B, A) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  42. def foldRight[B](z: B)(op: (A, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def forall(p: (A) ⇒ Boolean): Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  44. def foreach[U](f: (A) ⇒ U): Unit
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  45. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to StringFormat[GroupIterator[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  46. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  47. def grouped[B >: A](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  48. def hasDefiniteSize: Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  49. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  50. def indexOf[B >: A](elem: B, from: Int): Int
    Definition Classes
    Iterator
  51. def indexOf[B >: A](elem: B): Int
    Definition Classes
    Iterator
  52. def indexWhere(p: (A) ⇒ Boolean, from: Int): Int
    Definition Classes
    Iterator
  53. def indexWhere(p: (A) ⇒ Boolean): Int
    Definition Classes
    Iterator
  54. def isEmpty: Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  55. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  56. def isTraversableAgain: Boolean
    Definition Classes
    Iterator → GenTraversableOnce
  57. def length: Int
    Definition Classes
    Iterator
  58. def map[B](f: (A) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  59. def max[B >: A](implicit cmp: Ordering[B]): A
    Definition Classes
    TraversableOnce → GenTraversableOnce
  60. def maxBy[B](f: (A) ⇒ B)(implicit cmp: Ordering[B]): A
    Definition Classes
    TraversableOnce → GenTraversableOnce
  61. def min[B >: A](implicit cmp: Ordering[B]): A
    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def minBy[B](f: (A) ⇒ B)(implicit cmp: Ordering[B]): A
    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  67. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  68. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  69. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  70. def onExit: Unit

    Called on the first time when hasNext of the innermost iterator returns false.

    Called on the first time when hasNext of the innermost iterator returns false. The default implementation does nothing.

  71. def padTo[A1 >: A](len: Int, elem: A1): Iterator[A1]
    Definition Classes
    Iterator
  72. def partition(p: (A) ⇒ Boolean): (Iterator[A], Iterator[A])
    Definition Classes
    Iterator
  73. def patch[B >: A](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  74. def product[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def reduceLeft[B >: A](op: (B, A) ⇒ B): B
    Definition Classes
    TraversableOnce
  77. def reduceLeftOption[B >: A](op: (B, A) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def reduceRight[B >: A](op: (A, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def reduceRightOption[B >: A](op: (A, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def reversed: List[A]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  82. def sameElements(that: Iterator[_]): Boolean
    Definition Classes
    Iterator
  83. def scanLeft[B](z: B)(op: (B, A) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  84. def scanRight[B](z: B)(op: (A, B) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  85. def seq: Iterator[A]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  86. def size: Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  88. def slice(from: Int, until: Int): Iterator[A]
    Definition Classes
    Iterator
  89. def sliceIterator(from: Int, until: Int): Iterator[A]
    Attributes
    protected
    Definition Classes
    Iterator
  90. def sliding[B >: A](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  91. def span(p: (A) ⇒ Boolean): (Iterator[A], Iterator[A])
    Definition Classes
    Iterator
  92. def sum[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  94. def take(n: Int): Iterator[A]
    Definition Classes
    Iterator
  95. def takeWhile(p: (A) ⇒ Boolean): Iterator[A]
    Definition Classes
    Iterator
  96. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, A, Col[A]]): Col[A]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toBuffer[B >: A]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def toIndexedSeq: IndexedSeq[A]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def toIterable: Iterable[A]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def toIterator: Iterator[A]
    Definition Classes
    Iterator → GenTraversableOnce
  102. def toList: List[A]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def toMap[T, U](implicit ev: <:<[A, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def toSeq: Seq[A]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def toSet[B >: A]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def toStream: Stream[A]
    Definition Classes
    Iterator → GenTraversableOnce
  107. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  108. def toTraversable: Traversable[A]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  109. def toVector: Vector[A]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  110. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  111. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  112. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  113. def withFilter(p: (A) ⇒ Boolean): Iterator[A]
    Definition Classes
    Iterator
  114. def zip[B](that: Iterator[B]): Iterator[(A, B)]
    Definition Classes
    Iterator
  115. def zipAll[B, A1 >: A, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]
    Definition Classes
    Iterator
  116. def zipWithIndex: Iterator[(A, Int)]
    Definition Classes
    Iterator
  117. def [B](y: B): (GroupIterator[A], B)
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to ArrowAssoc[GroupIterator[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (A) ⇒ Boolean): TraversableOnce[A]
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to MonadOps[A] 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:
    (groupIterator: MonadOps[A]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (A) ⇒ GenTraversableOnce[B]): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to MonadOps[A] 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:
    (groupIterator: MonadOps[A]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (A) ⇒ B): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to MonadOps[A] 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:
    (groupIterator: MonadOps[A]).map(f)
    Definition Classes
    MonadOps
  4. def withFilter(p: (A) ⇒ Boolean): Iterator[A]
    Implicit
    This member is added by an implicit conversion from GroupIterator[A] to MonadOps[A] 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:
    (groupIterator: MonadOps[A]).withFilter(p)
    Definition Classes
    MonadOps

Inherited from Iterator[A]

Inherited from TraversableOnce[A]

Inherited from GenTraversableOnce[A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion MonadOps from GroupIterator[A] to MonadOps[A]

Inherited by implicit conversion any2stringadd from GroupIterator[A] to any2stringadd[GroupIterator[A]]

Inherited by implicit conversion StringFormat from GroupIterator[A] to StringFormat[GroupIterator[A]]

Inherited by implicit conversion Ensuring from GroupIterator[A] to Ensuring[GroupIterator[A]]

Inherited by implicit conversion ArrowAssoc from GroupIterator[A] to ArrowAssoc[GroupIterator[A]]

Inherited by implicit conversion alternateImplicit from GroupIterator[A] to ForceImplicitAmbiguity

Ungrouped