Showing content from https://www.scala-lang.org/api/2.13.10/scala/collection/BufferedIterator.html below:
Scala Standard Library 2.13.10 - scala.collection.BufferedIterator
trait BufferedIterator[+A] extends Iterator[A]
î·î
Ordering
- Alphabetic
- By Inheritance
Inherited
- BufferedIterator
- Iterator
- IterableOnceOps
- IterableOnce
- AnyRef
- Any
Implicitly
- by iterableOnceExtensionMethods
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
Visibility
- Public
- Protected
Abstract Value Members
- î
abstract def hasNext: Boolean
- î
abstract def head: A
- î
abstract def next(): A
Concrete Value Members
- î
final def !=(arg0: Any): Boolean
- î
final def ##: Int
- î
def +(other: String): String
- î
final def ++[B >: A](xs: => IterableOnce[B]): Iterator[B]
- î
def ->[B](y: B): (BufferedIterator[A], B)
- î
final def ==(arg0: Any): Boolean
- î
final def addString(b: mutable.StringBuilder): b.type
- î
final def addString(b: mutable.StringBuilder, sep: String): b.type
- î
def addString(b: mutable.StringBuilder, start: String, sep: String, end: String): b.type
- î
final def asInstanceOf[T0]: T0
- î
def buffered: BufferedIterator.this.type
- î
def clone(): AnyRef
- î
def collect[B](pf: PartialFunction[A, B]): Iterator[B]
- î
def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
- î
def concat[B >: A](xs: => IterableOnce[B]): Iterator[B]
- î
def contains(elem: Any): Boolean
- î
def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Int
- î
def copyToArray[B >: A](xs: Array[B], start: Int): Int
- î
def copyToArray[B >: A](xs: Array[B]): Int
- î
def corresponds[B](that: IterableOnce[B])(p: (A, B) => Boolean): Boolean
- î
def count(p: (A) => Boolean): Int
- î
def distinct: Iterator[A]
- î
def distinctBy[B](f: (A) => B): Iterator[A]
- î
def drop(n: Int): Iterator[A]
- î
def dropWhile(p: (A) => Boolean): Iterator[A]
- î
def duplicate: (Iterator[A], Iterator[A])
- î
def ensuring(cond: (BufferedIterator[A]) => Boolean, msg: => Any): BufferedIterator[A]
- î
def ensuring(cond: (BufferedIterator[A]) => Boolean): BufferedIterator[A]
- î
def ensuring(cond: Boolean, msg: => Any): BufferedIterator[A]
- î
def ensuring(cond: Boolean): BufferedIterator[A]
- î
final def eq(arg0: AnyRef): Boolean
- î
def equals(arg0: AnyRef): Boolean
- î
def exists(p: (A) => Boolean): Boolean
- î
def filter(p: (A) => Boolean): Iterator[A]
- î
def filterNot(p: (A) => Boolean): Iterator[A]
- î
def finalize(): Unit
- î
def find(p: (A) => Boolean): Option[A]
- î
def flatMap[B](f: (A) => IterableOnce[B]): Iterator[B]
- î
def flatten[B](implicit ev: (A) => IterableOnce[B]): Iterator[B]
- î
def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
- î
def foldLeft[B](z: B)(op: (B, A) => B): B
- î
def foldRight[B](z: B)(op: (A, B) => B): B
- î
def forall(p: (A) => Boolean): Boolean
- î
def foreach[U](f: (A) => U): Unit
- î
final def getClass(): Class[_ <: AnyRef]
- î
def grouped[B >: A](size: Int): GroupedIterator[B]
- î
def hashCode(): Int
- î
def headOption: Option[A]
- î
def indexOf[B >: A](elem: B, from: Int): Int
- î
def indexOf[B >: A](elem: B): Int
- î
def indexWhere(p: (A) => Boolean, from: Int = 0): Int
- î
def isEmpty: Boolean
- î
final def isInstanceOf[T0]: Boolean
- î
def isTraversableAgain: Boolean
- î
final def iterator: Iterator[A]
- î
def knownSize: Int
- î
final def length: Int
- î
def map[B](f: (A) => B): Iterator[B]
- î
def max[B >: A](implicit ord: math.Ordering[B]): A
- î
def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
- î
def maxByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
- î
def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
- î
def min[B >: A](implicit ord: math.Ordering[B]): A
- î
def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
- î
def minByOption[B](f: (A) => B)(implicit cmp: math.Ordering[B]): Option[A]
- î
def minOption[B >: A](implicit ord: math.Ordering[B]): Option[A]
- î
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 nextOption(): Option[A]
- î
def nonEmpty: Boolean
- î
final def notify(): Unit
- î
final def notifyAll(): Unit
- î
def padTo[B >: A](len: Int, elem: B): Iterator[B]
- î
def partition(p: (A) => Boolean): (Iterator[A], Iterator[A])
- î
def patch[B >: A](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
- î
def product[B >: A](implicit num: math.Numeric[B]): B
- î
def reduce[B >: A](op: (B, B) => B): B
- î
def reduceLeft[B >: A](op: (B, A) => B): B
- î
def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
- î
def reduceOption[B >: A](op: (B, B) => B): Option[B]
- î
def reduceRight[B >: A](op: (A, B) => B): B
- î
def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
- î
def reversed: Iterable[A]
- î
def sameElements[B >: A](that: IterableOnce[B]): Boolean
- î
def scanLeft[B](z: B)(op: (B, A) => B): Iterator[B]
- î
def size: Int
- î
def slice(from: Int, until: Int): Iterator[A]
- î
def sliceIterator(from: Int, until: Int): Iterator[A]
- î
def sliding[B >: A](size: Int, step: Int = 1): GroupedIterator[B]
- î
def span(p: (A) => Boolean): (Iterator[A], Iterator[A])
- î
def splitAt(n: Int): (Iterator[A], Iterator[A])
- î
def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S
- î
def sum[B >: A](implicit num: math.Numeric[B]): B
- î
final def synchronized[T0](arg0: => T0): T0
- î
def take(n: Int): Iterator[A]
- î
def takeWhile(p: (A) => Boolean): Iterator[A]
- î
def tapEach[U](f: (A) => U): Iterator[A]
- î
def to[C1](factory: Factory[A, C1]): C1
- î
def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
- î
final def toBuffer[B >: A]: Buffer[B]
- î
def toIndexedSeq: immutable.IndexedSeq[A]
- î
def toList: immutable.List[A]
- î
def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
- î
def toSeq: immutable.Seq[A]
- î
def toSet[B >: A]: immutable.Set[B]
- î
def toString(): String
- î
def toVector: immutable.Vector[A]
- î
final def wait(): Unit
- î
final def wait(arg0: Long, arg1: Int): Unit
- î
final def wait(arg0: Long): Unit
- î
def withFilter(p: (A) => Boolean): Iterator[A]
- î
def zip[B](that: IterableOnce[B]): Iterator[(A, B)]
- î
def zipAll[A1 >: A, B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]
- î
def zipWithIndex: Iterator[(A, Int)]
Deprecated Value Members
- î
def /:[B](z: B)(op: (B, A) => B): B
- î
final def /:[B](z: B)(op: (B, A) => B): B
- î
def :\[B](z: B)(op: (A, B) => B): B
- î
final def :\[B](z: B)(op: (A, B) => B): B
- î
def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
- î
def collectFirst[B](f: PartialFunction[A, B]): Option[B]
- î
def copyToBuffer(dest: Buffer[A]): Unit
- î
final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
- î
def count(f: (A) => Boolean): Int
- î
def exists(f: (A) => Boolean): Boolean
- î
def filter(f: (A) => Boolean): Iterator[A]
- î
def find(p: (A) => Boolean): Option[A]
- î
def flatMap[B](f: (A) => IterableOnce[B]): IterableOnce[B]
- î
def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
- î
def foldLeft[B](z: B)(op: (B, A) => B): B
- î
def foldRight[B](z: B)(op: (A, B) => B): B
- î
def forall(f: (A) => Boolean): Boolean
- î
def foreach[U](f: (A) => U): Unit
- î
def formatted(fmtstr: String): String
- î
final def hasDefiniteSize: Boolean
- î
def isEmpty: Boolean
- î
def map[B](f: (A) => B): IterableOnce[B]
- î
def max(implicit ord: math.Ordering[A]): A
- î
def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
- î
def min(implicit ord: math.Ordering[A]): A
- î
def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
- î
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[A]): A
- î
def reduce(f: (A, A) => A): A
- î
def reduceLeft(f: (A, A) => A): A
- î
def reduceLeftOption(f: (A, A) => A): Option[A]
- î
def reduceOption(f: (A, A) => A): Option[A]
- î
def reduceRight(f: (A, A) => A): A
- î
def reduceRightOption(f: (A, A) => A): Option[A]
- î
def sameElements[B >: A](that: IterableOnce[B]): Boolean
- î
def scanRight[B](z: B)(op: (A, B) => B): Iterator[B]
- î
def seq: BufferedIterator.this.type
- î
def size: Int
- î
def sum(implicit num: math.Numeric[A]): A
- î
def to[C1](factory: Factory[A, C1]): C1
- î
def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
- î
def toBuffer[B >: A]: Buffer[B]
- î
def toIndexedSeq: IndexedSeq[A]
- î
final def toIterable: Iterable[A]
- î
def toIterator: Iterator[A]
- î
final def toIterator: Iterator[A]
- î
def toList: immutable.List[A]
- î
def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
- î
def toSeq: immutable.Seq[A]
- î
def toSet[B >: A]: immutable.Set[B]
- î
def toStream: immutable.Stream[A]
- î
final def toStream: immutable.Stream[A]
- î
final def toTraversable: Traversable[A]
- î
def toVector: immutable.Vector[A]
- î
def withFilter(f: (A) => Boolean): Iterator[A]
- î
def â[B](y: B): (BufferedIterator[A], B)
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4