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

Function encodeStringSliceValue

encode_slice.go:101–104  ·  view source on GitHub ↗
(e *Encoder, v reflect.Value)

Source from the content-addressed store, hash-verified

99}
100
101func encodeStringSliceValue(e *Encoder, v reflect.Value) error {
102 ss := v.Convert(stringSliceType).Interface().([]string)
103 return e.encodeStringSlice(ss)
104}
105
106func (e *Encoder) encodeStringSlice(s []string) error {
107 if s == nil {

Callers

nothing calls this directly

Calls 1

encodeStringSliceMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…