(v uint8)
| 341 | func (enc *jsonEncoder) AppendUint32(v uint32) { enc.AppendUint64(uint64(v)) } |
| 342 | func (enc *jsonEncoder) AppendUint16(v uint16) { enc.AppendUint64(uint64(v)) } |
| 343 | func (enc *jsonEncoder) AppendUint8(v uint8) { enc.AppendUint64(uint64(v)) } |
| 344 | func (enc *jsonEncoder) AppendUintptr(v uintptr) { enc.AppendUint64(uint64(v)) } |
| 345 | |
| 346 | func (enc *jsonEncoder) Clone() Encoder { |
nothing calls this directly
no test coverage detected