Buffered reading utilities.
BufferedReader allows a streamed file to be accessed like a
random-access file by buffering the first n bytes in memory.
|
|
BufferedReplacementReader
Buffered file-like object wrapper that replaces the first n bytes
of the file with the specified buffer.
|
|
|
BufferedReader
Buffered file-like object wrapper that reads the first n bytes of
the file so that it can be re-read using the standard seek/tell
idioms.
|
|
|
WindowReader
File-like object wrapper that restricts file read operations to a
window region within the file.
|