Scala Library
|
|
scala/io/BufferedSource.scala
]
class
BufferedSource(inputStream : java.io.InputStream, bufferSize : Int, codec : Codec)
extends
SourceValue Summary | |
val
|
decoder : java.nio.charset.CharsetDecoder |
override val
|
iter
: Iterator[Char]
the actual iterator
|
val
|
reader : java.io.BufferedReader |
Values and Variables inherited from Source | |
cline, ccol, pos, ch, descr, nerrors, nwarnings, tabinc |
Method Summary | |
def
|
close : Unit |
def
|
reset
: Source
The reset() method creates a fresh copy of this Source.
|
Methods inherited from Source | |
getLine, getLines, hasNext, next, reportError, report, reportWarning |
Methods inherited from Iterator | |
take, drop, slice, map, ++, flatMap, filter, takeWhile, partition, dropWhile, zip, padTo, zipWithIndex, zipAll, foreach, forall, exists, contains, find, indexWhere, indexOf, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, reduceLeftOpt, reduceRightOpt, buffered, length, duplicate, patch, copyToArray, copyToArray, copyToArray, copyToBuffer, toList, toStream, toSequence, mkString, mkString, mkString, addString, addString, addString, toString, append, findIndexOf, collect, counted, readInto, readInto, readInto |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Value Details |
val
decoder : java.nio.charset.CharsetDecoder
val
reader : java.io.BufferedReader
Method Details |
Scala Library
|
|