# Functions
NewReader returns a new NewReader whose buffer has the default size.
NewReaderSize returns a new Reader whose buffer has at least the specified size.
NewReaderSizeClose returns a new Reader whose buffer has at least the specified size.
NewScanner returns a new Scanner to read from r.
NewWriter returns a new Writer whose buffer has the default size.
NewWriterClose returns a new Writer whose buffer has the default size.
NewWriterSize returns a new Writer whose buffer has at least the specified size.
NewWriterSizeClose returns a new Writer whose buffer has at least the specified size.
# Structs
Reader is a modified version of the Reader from the standard library bufio package that wraps an io.ReadCloser and closes its underlying closer when the Close method is called.
Scanner is a modified version of the Scanner from the standard library bufio package that wraps an io.ReadCloser and closes its underlying closer when the Close method is called.
No description provided by the author