(re *RawExt)
| 320 | } |
| 321 | |
| 322 | func (e *msgpackEncDriver) EncodeRawExt(re *RawExt) { |
| 323 | e.encodeExtPreamble(uint8(re.Tag), len(re.Data)) |
| 324 | e.e.encWr.writeb(re.Data) |
| 325 | } |
| 326 | |
| 327 | func (e *msgpackEncDriver) encodeExtPreamble(xtag byte, l int) { |
| 328 | if l == 1 { |
nothing calls this directly
no test coverage detected