type go.uber.org/zap/zapcore.MapObjectEncoder
28 uses
go.uber.org/zap/zapcore (current package)
memory_encoder.go#L28: type MapObjectEncoder struct {
memory_encoder.go#L36: func NewMapObjectEncoder() *MapObjectEncoder {
memory_encoder.go#L38: return &MapObjectEncoder{
memory_encoder.go#L45: func (m *MapObjectEncoder) AddArray(key string, v ArrayMarshaler) error {
memory_encoder.go#L53: func (m *MapObjectEncoder) AddObject(k string, v ObjectMarshaler) error {
memory_encoder.go#L60: func (m *MapObjectEncoder) AddBinary(k string, v []byte) { m.cur[k] = v }
memory_encoder.go#L63: func (m *MapObjectEncoder) AddByteString(k string, v []byte) { m.cur[k] = string(v) }
memory_encoder.go#L66: func (m *MapObjectEncoder) AddBool(k string, v bool) { m.cur[k] = v }
memory_encoder.go#L69: func (m MapObjectEncoder) AddDuration(k string, v time.Duration) { m.cur[k] = v }
memory_encoder.go#L72: func (m *MapObjectEncoder) AddComplex128(k string, v complex128) { m.cur[k] = v }
memory_encoder.go#L75: func (m *MapObjectEncoder) AddComplex64(k string, v complex64) { m.cur[k] = v }
memory_encoder.go#L78: func (m *MapObjectEncoder) AddFloat64(k string, v float64) { m.cur[k] = v }
memory_encoder.go#L81: func (m *MapObjectEncoder) AddFloat32(k string, v float32) { m.cur[k] = v }
memory_encoder.go#L84: func (m *MapObjectEncoder) AddInt(k string, v int) { m.cur[k] = v }
memory_encoder.go#L87: func (m *MapObjectEncoder) AddInt64(k string, v int64) { m.cur[k] = v }
memory_encoder.go#L90: func (m *MapObjectEncoder) AddInt32(k string, v int32) { m.cur[k] = v }
memory_encoder.go#L93: func (m *MapObjectEncoder) AddInt16(k string, v int16) { m.cur[k] = v }
memory_encoder.go#L96: func (m *MapObjectEncoder) AddInt8(k string, v int8) { m.cur[k] = v }
memory_encoder.go#L99: func (m *MapObjectEncoder) AddString(k string, v string) { m.cur[k] = v }
memory_encoder.go#L102: func (m MapObjectEncoder) AddTime(k string, v time.Time) { m.cur[k] = v }
memory_encoder.go#L105: func (m *MapObjectEncoder) AddUint(k string, v uint) { m.cur[k] = v }
memory_encoder.go#L108: func (m *MapObjectEncoder) AddUint64(k string, v uint64) { m.cur[k] = v }
memory_encoder.go#L111: func (m *MapObjectEncoder) AddUint32(k string, v uint32) { m.cur[k] = v }
memory_encoder.go#L114: func (m *MapObjectEncoder) AddUint16(k string, v uint16) { m.cur[k] = v }
memory_encoder.go#L117: func (m *MapObjectEncoder) AddUint8(k string, v uint8) { m.cur[k] = v }
memory_encoder.go#L120: func (m *MapObjectEncoder) AddUintptr(k string, v uintptr) { m.cur[k] = v }
memory_encoder.go#L123: func (m *MapObjectEncoder) AddReflected(k string, v interface{}) error {
memory_encoder.go#L129: func (m *MapObjectEncoder) OpenNamespace(k string) {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |