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

Method DecodeExtHeader

ext.go:198–204  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

196}
197
198func (d *Decoder) DecodeExtHeader() (extID int8, extLen int, err error) {
199 c, err := d.readCode()
200 if err != nil {
201 return
202 }
203 return d.extHeader(c)
204}
205
206func (d *Decoder) extHeader(c byte) (int8, int, error) {
207 extLen, err := d.parseExtLen(c)

Callers 2

makeExtDecoderFunction · 0.80

Calls 2

readCodeMethod · 0.95
extHeaderMethod · 0.95

Tested by 1