Build returns a JSON object built from a key value pair sequence. After that, it should not be modified any longer.
()
| 350 | // Build returns a JSON object built from a key value pair sequence. After that, |
| 351 | // it should not be modified any longer. |
| 352 | func (b *ObjectBuilderWithCounter) Build() JSON { |
| 353 | return b.ob.Build() |
| 354 | } |
| 355 | |
| 356 | // Size returns the size in bytes of the JSON object the builder is going to build. |
| 357 | func (b *ObjectBuilderWithCounter) Size() uintptr { |