(p []byte)
| 36 | } |
| 37 | |
| 38 | func (s String) encode(p []byte) int { |
| 39 | off := encodeArg(majorTypeString, len(s), p) |
| 40 | copy(p[off:], []byte(s)) |
| 41 | return off + len(s) |
| 42 | } |
| 43 | |
| 44 | func (l List) len() int { |
| 45 | total := itoarglen(len(l)) |
nothing calls this directly
no test coverage detected