Add appends JSON to the sequence.
(j JSON)
| 216 | |
| 217 | // Add appends JSON to the sequence. |
| 218 | func (b *ArrayBuilder) Add(j JSON) { |
| 219 | b.jsons = append(b.jsons, j) |
| 220 | } |
| 221 | |
| 222 | // Build returns the constructed JSON array. A caller may not modify the array, |
| 223 | // and the ArrayBuilder reserves the right to re-use the array returned (though |
no outgoing calls
no test coverage detected