(p []byte)
| 26 | } |
| 27 | |
| 28 | func (s Slice) encode(p []byte) int { |
| 29 | off := encodeArg(majorTypeSlice, len(s), p) |
| 30 | copy(p[off:], []byte(s)) |
| 31 | return off + len(s) |
| 32 | } |
| 33 | |
| 34 | func (s String) len() int { |
| 35 | return itoarglen(len(s)) + len(s) |
nothing calls this directly
no test coverage detected