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

Method AppendInt

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

Source from the content-addressed store, hash-verified

334func (enc *jsonEncoder) AppendFloat64(v float64) { enc.appendFloat(v, 64) }
335func (enc *jsonEncoder) AppendFloat32(v float32) { enc.appendFloat(float64(v), 32) }
336func (enc *jsonEncoder) AppendInt(v int) { enc.AppendInt64(int64(v)) }
337func (enc *jsonEncoder) AppendInt32(v int32) { enc.AppendInt64(int64(v)) }
338func (enc *jsonEncoder) AppendInt16(v int16) { enc.AppendInt64(int64(v)) }
339func (enc *jsonEncoder) AppendInt8(v int8) { enc.AppendInt64(int64(v)) }

Callers

nothing calls this directly

Calls 1

AppendInt64Method · 0.95

Tested by

no test coverage detected