|
Scala Library
|
|
sealed
class
StreamReader(seq : PagedSeq[Char], off : Int, lnum : Int)
extends PagedSeqReaderPagedSeqReader instead.| Values and Variables inherited from PagedSeqReader | |
| offset, source |
| Method Summary | |
override def
|
drop
(n : Int) : StreamReader
Returns an abstract reader consisting of all elements except the first
n elements. |
override def
|
pos
: Position
The position of the first element in the reader
|
override def
|
rest
: StreamReader
Returns a PagedSeqReader consisting of all elements except the first
|
| Methods inherited from PagedSeqReader | |
| first, atEnd |
| 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 |
override
def
rest : StreamReader
atEnd is true, the result will be this'; otherwise, it's a PagedSeqReader containing
the rest of input.override
def
drop(n : Int) : StreamReader
n elements.override
def
pos : Position
|
Scala Library
|
|