(e *Encoder, v reflect.Value)
| 99 | } |
| 100 | |
| 101 | func encodeStringSliceValue(e *Encoder, v reflect.Value) error { |
| 102 | ss := v.Convert(stringSliceType).Interface().([]string) |
| 103 | return e.encodeStringSlice(ss) |
| 104 | } |
| 105 | |
| 106 | func (e *Encoder) encodeStringSlice(s []string) error { |
| 107 | if s == nil { |
nothing calls this directly
no test coverage detected
searching dependent graphs…