Build returns a JSON array built from a JSON sequence. After that, it should not be modified any longer.
()
| 251 | // Build returns a JSON array built from a JSON sequence. After that, it should |
| 252 | // not be modified any longer. |
| 253 | func (b *ArrayBuilderWithCounter) Build() JSON { |
| 254 | return b.ab.Build() |
| 255 | } |
| 256 | |
| 257 | // Size returns the size in bytes of the JSON Array the builder is going to build. |
| 258 | func (b *ArrayBuilderWithCounter) Size() uintptr { |