()
| 344 | func (enc *jsonEncoder) AppendUintptr(v uintptr) { enc.AppendUint64(uint64(v)) } |
| 345 | |
| 346 | func (enc *jsonEncoder) Clone() Encoder { |
| 347 | clone := enc.clone() |
| 348 | clone.buf.Write(enc.buf.Bytes()) |
| 349 | return clone |
| 350 | } |
| 351 | |
| 352 | func (enc *jsonEncoder) clone() *jsonEncoder { |
| 353 | clone := _jsonPool.Get() |