Scala Standard Library 2.13.1 - scala.collection.Iterator.GroupedIterator (original) (raw)
class GroupedIterator[B >: A] extends AbstractIterator[immutable.Seq[B]]
Ordering
- Alphabetic
- By Inheritance
Inherited
- GroupedIterator
- AbstractIterator
- Iterator
- IterableOnceOps
- IterableOnce
- AnyRef
- Any
Implicitly
by iterableOnceExtensionMethods
by any2stringadd
by StringFormat
by Ensuring
by ArrowAssoc
Hide All
Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- final def !=(arg0: Any): Boolean
- final def ##(): Int
- def +(other: String): String
- final def ++[B >: immutable.Seq[B]](xs: => IterableOnce[B]): Iterator[B]
- def ->[B](y: B): (GroupedIterator[B], B)
- final def ==(arg0: Any): Boolean
- final def addString(b: mutable.StringBuilder): mutable.StringBuilder
- final def addString(b: mutable.StringBuilder, sep: String): mutable.StringBuilder
- def addString(b: mutable.StringBuilder, start: String, sep: String, end: String): mutable.StringBuilder
- final def asInstanceOf[T0]: T0
- def buffered: BufferedIterator[immutable.Seq[B]]
- def clone(): AnyRef
- def collect[B](pf: PartialFunction[immutable.Seq[B], B]): Iterator[B]
- def collectFirst[B](pf: PartialFunction[immutable.Seq[B], B]): Option[B]
- def concat[B >: immutable.Seq[B]](xs: => IterableOnce[B]): Iterator[B]
- def contains(elem: Any): Boolean
- def copyToArray[B >: immutable.Seq[B]](xs: Array[B], start: Int, len: Int): Int
- def copyToArray[B >: immutable.Seq[B]](xs: Array[B], start: Int): Int
- def copyToArray[B >: immutable.Seq[B]](xs: Array[B]): Int
- def corresponds[B](that: IterableOnce[B])(p: (immutable.Seq[B], B) => Boolean): Boolean
- def count(p: (immutable.Seq[B]) => Boolean): Int
- def distinct: Iterator[immutable.Seq[B]]
- def distinctBy[B](f: (immutable.Seq[B]) => B): Iterator[immutable.Seq[B]]
- def drop(n: Int): Iterator[immutable.Seq[B]]
- def dropWhile(p: (immutable.Seq[B]) => Boolean): Iterator[immutable.Seq[B]]
- def duplicate: (Iterator[immutable.Seq[B]], Iterator[immutable.Seq[B]])
- def ensuring(cond: (GroupedIterator[B]) => Boolean, msg: => Any): GroupedIterator[B]
- def ensuring(cond: (GroupedIterator[B]) => Boolean): GroupedIterator[B]
- def ensuring(cond: Boolean, msg: => Any): GroupedIterator[B]
- def ensuring(cond: Boolean): GroupedIterator[B]
- final def eq(arg0: AnyRef): Boolean
- def equals(arg0: AnyRef): Boolean
- def exists(p: (immutable.Seq[B]) => Boolean): Boolean
- def filter(p: (immutable.Seq[B]) => Boolean): Iterator[immutable.Seq[B]]
- def filterNot(p: (immutable.Seq[B]) => Boolean): Iterator[immutable.Seq[B]]
- def finalize(): Unit
- def find(p: (immutable.Seq[B]) => Boolean): Option[immutable.Seq[B]]
- def flatMap[B](f: (immutable.Seq[B]) => IterableOnce[B]): Iterator[B]
- def flatten[B](implicit ev: (immutable.Seq[B]) => IterableOnce[B]): Iterator[B]
- def fold[A1 >: immutable.Seq[B]](z: A1)(op: (A1, A1) => A1): A1
- def foldLeft[B](z: B)(op: (B, immutable.Seq[B]) => B): B
- def foldRight[B](z: B)(op: (immutable.Seq[B], B) => B): B
- def forall(p: (immutable.Seq[B]) => Boolean): Boolean
- def foreach[U](f: (immutable.Seq[B]) => U): Unit
- def formatted(fmtstr: String): String
- final def getClass(): Class[_ <: AnyRef]
- def grouped[B >: immutable.Seq[B]](size: Int): GroupedIterator[B]
- def hasNext: Boolean
- def hashCode(): Int
- def indexOf[B >: immutable.Seq[B]](elem: B, from: Int): Int
- def indexOf[B >: immutable.Seq[B]](elem: B): Int
- def indexWhere(p: (immutable.Seq[B]) => Boolean, from: Int = 0): Int
- def isEmpty: Boolean
- final def isInstanceOf[T0]: Boolean
- def isTraversableAgain: Boolean
- final def iterator: Iterator[immutable.Seq[B]]
- def knownSize: Int
- final def length: Int
- def map[B](f: (immutable.Seq[B]) => B): Iterator[B]
- def max[B >: immutable.Seq[B]](implicit ord: math.Ordering[B]): immutable.Seq[B]
- def maxBy[B](f: (immutable.Seq[B]) => B)(implicit cmp: math.Ordering[B]): immutable.Seq[B]
- def maxByOption[B](f: (immutable.Seq[B]) => B)(implicit cmp: math.Ordering[B]): Option[immutable.Seq[B]]
- def maxOption[B >: immutable.Seq[B]](implicit ord: math.Ordering[B]): Option[immutable.Seq[B]]
- def min[B >: immutable.Seq[B]](implicit ord: math.Ordering[B]): immutable.Seq[B]
- def minBy[B](f: (immutable.Seq[B]) => B)(implicit cmp: math.Ordering[B]): immutable.Seq[B]
- def minByOption[B](f: (immutable.Seq[B]) => B)(implicit cmp: math.Ordering[B]): Option[immutable.Seq[B]]
- def minOption[B >: immutable.Seq[B]](implicit ord: math.Ordering[B]): Option[immutable.Seq[B]]
- final def mkString: String
- final def mkString(sep: String): String
- final def mkString(start: String, sep: String, end: String): String
- final def ne(arg0: AnyRef): Boolean
- def next(): immutable.Seq[B]
- def nextOption(): Option[immutable.Seq[B]]
- def nonEmpty: Boolean
- final def notify(): Unit
- final def notifyAll(): Unit
- def padTo[B >: immutable.Seq[B]](len: Int, elem: B): Iterator[B]
- def partition(p: (immutable.Seq[B]) => Boolean): (Iterator[immutable.Seq[B]], Iterator[immutable.Seq[B]])
- def patch[B >: immutable.Seq[B]](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
- def product[B >: immutable.Seq[B]](implicit num: math.Numeric[B]): B
- def reduce[B >: immutable.Seq[B]](op: (B, B) => B): B
- def reduceLeft[B >: immutable.Seq[B]](op: (B, immutable.Seq[B]) => B): B
- def reduceLeftOption[B >: immutable.Seq[B]](op: (B, immutable.Seq[B]) => B): Option[B]
- def reduceOption[B >: immutable.Seq[B]](op: (B, B) => B): Option[B]
- def reduceRight[B >: immutable.Seq[B]](op: (immutable.Seq[B], B) => B): B
- def reduceRightOption[B >: immutable.Seq[B]](op: (immutable.Seq[B], B) => B): Option[B]
- def reversed: Iterable[immutable.Seq[B]]
- def sameElements[B >: immutable.Seq[B]](that: IterableOnce[B]): Boolean
- def scanLeft[B](z: B)(op: (B, immutable.Seq[B]) => B): Iterator[B]
- def size: Int
- def slice(from: Int, until: Int): Iterator[immutable.Seq[B]]
- def sliceIterator(from: Int, until: Int): Iterator[immutable.Seq[B]]
- def sliding[B >: immutable.Seq[B]](size: Int, step: Int = 1): GroupedIterator[B]
- def span(p: (immutable.Seq[B]) => Boolean): (Iterator[immutable.Seq[B]], Iterator[immutable.Seq[B]])
- def splitAt(n: Int): (Iterator[immutable.Seq[B]], Iterator[immutable.Seq[B]])
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[immutable.Seq[B], S]): S
- def sum[B >: immutable.Seq[B]](implicit num: math.Numeric[B]): B
- final def synchronized[T0](arg0: => T0): T0
- def take(n: Int): Iterator[immutable.Seq[B]]
- def takeWhile(p: (immutable.Seq[B]) => Boolean): Iterator[immutable.Seq[B]]
- def tapEach[U](f: (immutable.Seq[B]) => U): Iterator[immutable.Seq[B]]
- def to[C1](factory: Factory[immutable.Seq[B], C1]): C1
- def toArray[B >: immutable.Seq[B]](implicit arg0: ClassTag[B]): Array[B]
- final def toBuffer[B >: immutable.Seq[B]]: Buffer[B]
- def toIndexedSeq: immutable.IndexedSeq[immutable.Seq[B]]
- def toList: immutable.List[immutable.Seq[B]]
- def toMap[K, V](implicit ev: <:<[immutable.Seq[B], (K, V)]): immutable.Map[K, V]
- def toSeq: immutable.Seq[immutable.Seq[B]]
- def toSet[B >: immutable.Seq[B]]: immutable.Set[B]
- def toString(): String
- def toVector: immutable.Vector[immutable.Seq[B]]
- final def wait(): Unit
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
- def withFilter(p: (immutable.Seq[B]) => Boolean): Iterator[immutable.Seq[B]]
- def withPadding(x: => B): GroupedIterator.this.type
- def withPartial(x: Boolean): GroupedIterator.this.type
- def zip[B](that: IterableOnce[B]): Iterator[(immutable.Seq[B], B)]
- def zipAll[A1 >: immutable.Seq[B], B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]
- def zipWithIndex: Iterator[(immutable.Seq[B], Int)]
Deprecated Value Members
- def /:[B](z: B)(op: (B, immutable.Seq[B]) => B): B
- final def /:[B](z: B)(op: (B, immutable.Seq[B]) => B): B
- def :\[B](z: B)(op: (immutable.Seq[B], B) => B): B
- final def :\[B](z: B)(op: (immutable.Seq[B], B) => B): B
- def aggregate[B](z: => B)(seqop: (B, immutable.Seq[B]) => B, combop: (B, B) => B): B
- def collectFirst[B](f: PartialFunction[immutable.Seq[B], B]): Option[B]
- def copyToBuffer(dest: Buffer[immutable.Seq[B]]): Unit
- final def copyToBuffer[B >: immutable.Seq[B]](dest: Buffer[B]): Unit
- def count(f: (immutable.Seq[B]) => Boolean): Int
- def exists(f: (immutable.Seq[B]) => Boolean): Boolean
- def filter(f: (immutable.Seq[B]) => Boolean): Iterator[immutable.Seq[B]]
- def find(p: (immutable.Seq[B]) => Boolean): Option[immutable.Seq[B]]
- def flatMap[B](f: (immutable.Seq[B]) => IterableOnce[B]): IterableOnce[B]
- def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
- def foldLeft[B](z: B)(op: (B, immutable.Seq[B]) => B): B
- def foldRight[B](z: B)(op: (immutable.Seq[B], B) => B): B
- def forall(f: (immutable.Seq[B]) => Boolean): Boolean
- def foreach[U](f: (immutable.Seq[B]) => U): Unit
- final def hasDefiniteSize: Boolean
- def isEmpty: Boolean
- def map[B](f: (immutable.Seq[B]) => B): IterableOnce[B]
- def max(implicit ord: math.Ordering[immutable.Seq[B]]): immutable.Seq[B]
- def maxBy[B](f: (immutable.Seq[B]) => B)(implicit cmp: math.Ordering[B]): immutable.Seq[B]
- def min(implicit ord: math.Ordering[immutable.Seq[B]]): immutable.Seq[B]
- def minBy[B](f: (immutable.Seq[B]) => B)(implicit cmp: math.Ordering[B]): immutable.Seq[B]
- def mkString: String
- def mkString(sep: String): String
- def mkString(start: String, sep: String, end: String): String
- def nonEmpty: Boolean
- def product(implicit num: math.Numeric[immutable.Seq[B]]): immutable.Seq[B]
- def reduce(f: (immutable.Seq[B], immutable.Seq[B]) => immutable.Seq[B]): immutable.Seq[B]
- def reduceLeft(f: (immutable.Seq[B], immutable.Seq[B]) => immutable.Seq[B]): immutable.Seq[B]
- def reduceLeftOption(f: (immutable.Seq[B], immutable.Seq[B]) => immutable.Seq[B]): Option[immutable.Seq[B]]
- def reduceOption(f: (immutable.Seq[B], immutable.Seq[B]) => immutable.Seq[B]): Option[immutable.Seq[B]]
- def reduceRight(f: (immutable.Seq[B], immutable.Seq[B]) => immutable.Seq[B]): immutable.Seq[B]
- def reduceRightOption(f: (immutable.Seq[B], immutable.Seq[B]) => immutable.Seq[B]): Option[immutable.Seq[B]]
- def sameElements[B >: A](that: IterableOnce[B]): Boolean
- def scanRight[B](z: B)(op: (immutable.Seq[B], B) => B): Iterator[B]
- def seq: GroupedIterator.this.type
- def size: Int
- def sum(implicit num: math.Numeric[immutable.Seq[B]]): immutable.Seq[B]
- def to[C1](factory: Factory[immutable.Seq[B], C1]): C1
- def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
- def toBuffer[B >: A]: Buffer[B]
- def toIndexedSeq: IndexedSeq[immutable.Seq[B]]
- final def toIterable: Iterable[immutable.Seq[B]]
- def toIterator: Iterator[immutable.Seq[B]]
- final def toIterator: Iterator[immutable.Seq[B]]
- def toList: immutable.List[immutable.Seq[B]]
- def toMap[K, V](implicit ev: <:<[immutable.Seq[B], (K, V)]): immutable.Map[K, V]
- def toSeq: immutable.Seq[immutable.Seq[B]]
- def toSet[B >: A]: immutable.Set[B]
- def toStream: immutable.Stream[immutable.Seq[B]]
- final def toStream: immutable.Stream[immutable.Seq[B]]
- final def toTraversable: Traversable[immutable.Seq[B]]
- def toVector: immutable.Vector[immutable.Seq[B]]
- def withFilter(f: (immutable.Seq[B]) => Boolean): Iterator[immutable.Seq[B]]
- def →[B](y: B): (GroupedIterator[B], B)