StringIOReader is a wrapper around a bufio.Scanner that implements the StringReader interface.
| 54 | // StringIOReader is a wrapper around a bufio.Scanner that implements the |
| 55 | // StringReader interface. |
| 56 | type StringIOReader struct { |
| 57 | scanner *bufio.Scanner |
| 58 | } |
| 59 | |
| 60 | // NewStringIOReader creates a new StringIOReader. |
| 61 | func NewStringIOReader(r io.Reader) *StringIOReader { |
nothing calls this directly
no outgoing calls
no test coverage detected