Array represents the encoding of a JSON Array
| 6 | |
| 7 | // Array represents the encoding of a JSON Array |
| 8 | type Array struct { |
| 9 | w *bytes.Buffer |
| 10 | writeComma bool |
| 11 | scratch *[]byte |
| 12 | } |
| 13 | |
| 14 | func newArray(w *bytes.Buffer, scratch *[]byte) *Array { |
| 15 | w.WriteRune(leftBracket) |
nothing calls this directly
no outgoing calls
no test coverage detected