Build returns a JSON array built from a JSON sequence. After that, it should not be modified any longer.
()
| 236 | // Build returns a JSON array built from a JSON sequence. After that, it should |
| 237 | // not be modified any longer. |
| 238 | func (b *ArrayBuilderWithCounter) Build() JSON { |
| 239 | return b.ab.Build() |
| 240 | } |
| 241 | |
| 242 | // Size returns the size in bytes of the JSON Array the builder is going to build. |
| 243 | func (b *ArrayBuilderWithCounter) Size() uintptr { |