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

Function decodeMapStringStringValue

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

Source from the content-addressed store, hash-verified

94}
95
96func decodeMapStringStringValue(d *Decoder, v reflect.Value) error {
97 mptr := v.Addr().Convert(mapStringStringPtrType).Interface().(*map[string]string)
98 return d.decodeMapStringStringPtr(mptr)
99}
100
101func (d *Decoder) decodeMapStringStringPtr(ptr *map[string]string) error {
102 size, err := d.DecodeMapLen()

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…