Scala Library Documentation
|
|
scala/BufferedIterator.scala
]
trait
BufferedIterator[+A]
extends
Iterator[A]Method Summary | |
override def
|
buffered
: BufferedIterator[A]
Returns a buffered iterator from this iterator.
|
abstract def
|
head
: A
Checks what the next available element is.
|
Methods inherited from Iterator | |
hasNext (abstract), next (abstract), take, drop, map, append, ++, flatMap, filter, takeWhile, dropWhile, zip, zipWithIndex, foreach, forall, exists, contains, find, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, counted, duplicate, copyToArray, copyToBuffer, toList, mkString, mkString, addString |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
abstract
def
head : A
override
def
buffered : BufferedIterator[A]
Scala Library Documentation
|
|