(e *Encoder, v reflect.Value)
| 52 | } |
| 53 | |
| 54 | func encodeInternedStringValue(e *Encoder, v reflect.Value) error { |
| 55 | return e.encodeInternedString(v.String(), true) |
| 56 | } |
| 57 | |
| 58 | func (e *Encoder) encodeInternedString(s string, intern bool) error { |
| 59 | // Interned string takes at least 3 bytes. Plain string 1 byte + string len. |
nothing calls this directly
no test coverage detected
searching dependent graphs…