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

Method DecodeBytesLen

decode_string.go:71–77  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

69}
70
71func (d *Decoder) DecodeBytesLen() (int, error) {
72 c, err := d.readCode()
73 if err != nil {
74 return 0, err
75 }
76 return d.bytesLen(c)
77}
78
79func (d *Decoder) DecodeBytes() ([]byte, error) {
80 c, err := d.readCode()

Callers

nothing calls this directly

Calls 2

readCodeMethod · 0.95
bytesLenMethod · 0.95

Tested by

no test coverage detected