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

Method AppendUint

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

Source from the content-addressed store, hash-verified

338func (enc *jsonEncoder) AppendInt16(v int16) { enc.AppendInt64(int64(v)) }
339func (enc *jsonEncoder) AppendInt8(v int8) { enc.AppendInt64(int64(v)) }
340func (enc *jsonEncoder) AppendUint(v uint) { enc.AppendUint64(uint64(v)) }
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)) }

Callers

nothing calls this directly

Calls 1

AppendUint64Method · 0.95

Tested by

no test coverage detected