MCPcopy Index your code
hub / github.com/vmihailenco/msgpack / decodeMapStringInterfaceValue

Function decodeMapStringInterfaceValue

decode_map.go:136–139  ·  view source on GitHub ↗
(d *Decoder, v reflect.Value)

Source from the content-addressed store, hash-verified

134}
135
136func decodeMapStringInterfaceValue(d *Decoder, v reflect.Value) error {
137 ptr := v.Addr().Convert(mapStringInterfacePtrType).Interface().(*map[string]interface{})
138 return d.decodeMapStringInterfacePtr(ptr)
139}
140
141func (d *Decoder) decodeMapStringInterfacePtr(ptr *map[string]interface{}) error {
142 m, err := d.DecodeMap()

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…