MCPcopy
hub / github.com/uber-go/zap / AppendUint8

Method AppendUint8

zapcore/json_encoder.go:343–343  ·  view source on GitHub ↗
(v uint8)

Source from the content-addressed store, hash-verified

341func (enc *jsonEncoder) AppendUint32(v uint32) { enc.AppendUint64(uint64(v)) }
342func (enc *jsonEncoder) AppendUint16(v uint16) { enc.AppendUint64(uint64(v)) }
343func (enc *jsonEncoder) AppendUint8(v uint8) { enc.AppendUint64(uint64(v)) }
344func (enc *jsonEncoder) AppendUintptr(v uintptr) { enc.AppendUint64(uint64(v)) }
345
346func (enc *jsonEncoder) Clone() Encoder {

Callers

nothing calls this directly

Calls 1

AppendUint64Method · 0.95

Tested by

no test coverage detected