StringReader is the interface that wraps the ReadString method.
| 23 | |
| 24 | // StringReader is the interface that wraps the ReadString method. |
| 25 | type StringReader interface { |
| 26 | ReadString() (string, error) |
| 27 | } |
| 28 | |
| 29 | // StringArrayReader is a wrapper around a slice of strings that implements |
| 30 | // the StringReader interface. Each time the ReadString method is called a |
no outgoing calls
no test coverage detected