Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
71
func
(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
79
func
(d *Decoder) DecodeBytes() ([]byte, error) {
80
c, err := d.readCode()
Callers
nothing calls this directly
Calls
2
readCode
Method · 0.95
bytesLen
Method · 0.95
Tested by
no test coverage detected