Add appends JSON to the sequence.
(j JSON)
| 280 | |
| 281 | // Add appends JSON to the sequence. |
| 282 | func (b *ArrayBuilder) Add(j JSON) { |
| 283 | b.jsons = append(b.jsons, j) |
| 284 | } |
| 285 | |
| 286 | // Build returns the constructed JSON array. A caller may not modify the array, |
| 287 | // and the ArrayBuilder reserves the right to re-use the array returned (though |
no outgoing calls
no test coverage detected