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

Method decodeMapStringInterfacePtr

decode_map.go:141–148  ·  view source on GitHub ↗
(ptr *map[string]interface{})

Source from the content-addressed store, hash-verified

139}
140
141func (d *Decoder) decodeMapStringInterfacePtr(ptr *map[string]interface{}) error {
142 m, err := d.DecodeMap()
143 if err != nil {
144 return err
145 }
146 *ptr = m
147 return nil
148}
149
150func (d *Decoder) DecodeMap() (map[string]interface{}, error) {
151 n, err := d.DecodeMapLen()

Callers 2

DecodeMethod · 0.95

Calls 1

DecodeMapMethod · 0.95

Tested by

no test coverage detected