# Functions
Buffer is reserved for internal use.
IsReaderBuffer returns if this Reader instance is returned by NewReaderBuffer.
NewReader returns a new Reader whose buffer has the default size.
NewReaderBuffer returns a new Reader who uses a extern buffer.
NewReaderSize returns a new Reader whose buffer has at least the specified size.
ReadAll reads all data.
ReadAtLeast reads from r into buf until it has read at least min bytes.
ReadFull reads exactly len(buf) bytes from r into buf.
Seek sets the offset for the next Read or Write to offset, interpreted according to whence: SeekStart means relative to the start of the file, SeekCurrent means relative to the current offset, and SeekEnd means relative to the end.
UnderlyingReader returns the underlying reader.
# Variables
ErrSeekUnsupported error.