(w *bytes.Buffer, scratch *[]byte)
| 12 | } |
| 13 | |
| 14 | func newArray(w *bytes.Buffer, scratch *[]byte) *Array { |
| 15 | w.WriteRune(leftBracket) |
| 16 | return &Array{w: w, scratch: scratch} |
| 17 | } |
| 18 | |
| 19 | // Value adds a new element to the JSON Array. |
| 20 | // Returns a Value type that is used to encode |