MCPcopy
hub / github.com/uptrace/uptrace / encodeMapStringInterface

Method encodeMapStringInterface

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

Source from the content-addressed store, hash-verified

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}
130func (e encoder) encodeMapStringRawMessage(b []byte, p unsafe.Pointer) ([]byte, error) {
131 return nil, fmt.Errorf("not implemented")
132}

Callers

nothing calls this directly

Calls 1

AppendMapStringInterfaceFunction · 0.85

Tested by

no test coverage detected