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

Function decodeStringSliceValue

decode_slice.go:38–41  ·  view source on GitHub ↗
(d *Decoder, v reflect.Value)

Source from the content-addressed store, hash-verified

36}
37
38func decodeStringSliceValue(d *Decoder, v reflect.Value) error {
39 ptr := v.Addr().Convert(sliceStringPtrType).Interface().(*[]string)
40 return d.decodeStringSlicePtr(ptr)
41}
42
43func (d *Decoder) decodeStringSlicePtr(ptr *[]string) error {
44 n, err := d.DecodeArrayLen()

Callers

nothing calls this directly

Calls 1

decodeStringSlicePtrMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…