Build returns a JSON object built from a key value pair sequence. After that, it should not be modified any longer.
()
| 286 | // Build returns a JSON object built from a key value pair sequence. After that, |
| 287 | // it should not be modified any longer. |
| 288 | func (b *ObjectBuilderWithCounter) Build() JSON { |
| 289 | return b.ob.Build() |
| 290 | } |
| 291 | |
| 292 | // Size returns the size in bytes of the JSON object the builder is going to build. |
| 293 | func (b *ObjectBuilderWithCounter) Size() uintptr { |