MCPcopy Index your code
hub / github.com/vmihailenco/msgpack / skipExt

Method skipExt

ext.go:269–275  ·  view source on GitHub ↗
(c byte)

Source from the content-addressed store, hash-verified

267}
268
269func (d *Decoder) skipExt(c byte) error {
270 n, err := d.parseExtLen(c)
271 if err != nil {
272 return err
273 }
274 return d.skipN(n + 1)
275}
276
277func (d *Decoder) skipExtHeader(c byte) error {
278 // Read ext type.

Callers 1

SkipMethod · 0.95

Calls 2

parseExtLenMethod · 0.95
skipNMethod · 0.95

Tested by

no test coverage detected