MCPcopy Index your code
hub / github.com/uptrace/uptrace / encodeMapInterfaceInterface

Method encodeMapInterfaceInterface

pkg/msgp/encoder.go:124–126  ·  view source on GitHub ↗
(b []byte, p unsafe.Pointer)

Source from the content-addressed store, hash-verified

122 return b, nil
123}
124func (e encoder) encodeMapInterfaceInterface(b []byte, p unsafe.Pointer) ([]byte, error) {
125 return AppendMapInterfaceInterface(b, *(*map[any]any)(p), e.flags)
126}
127func (e encoder) encodeMapStringInterface(b []byte, p unsafe.Pointer) ([]byte, error) {
128 return AppendMapStringInterface(b, *(*map[string]any)(p), e.flags)
129}

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected