(v uint16)
| 340 | func (enc *jsonEncoder) AppendUint(v uint) { enc.AppendUint64(uint64(v)) } |
| 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 |
nothing calls this directly
no test coverage detected