ArrayWriter is a simple interface types can adopt for buffered writes of formatted arrays in structured types (eg JSON)
| 2 | |
| 3 | // ArrayWriter is a simple interface types can adopt for buffered writes of formatted arrays in structured types (eg JSON) |
| 4 | type ArrayWriter interface { |
| 5 | Write([]byte) error |
| 6 | WriteString(string) error |
| 7 | Close() error |
| 8 | } |
no outgoing calls
no test coverage detected