Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TabNewlineReader ¶
type TabNewlineReader struct {
// contains filtered or unexported fields
}
TabNewlineReader is a custom reader that wraps another io.Reader and reads data line by line.
func NewTabNewlineReader ¶
func NewTabNewlineReader(r io.Reader) *TabNewlineReader
NewTabNewlineReader creates a new TabNewlineReader wrapping the provided io.Reader.
func (*TabNewlineReader) Read ¶
func (r *TabNewlineReader) Read() ([]string, error)
Read reads one line from the underlying reader and returns a slice of strings, splitting the line by tabs.
Click to show internal directories.
Click to hide internal directories.