Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/vmihailenco/msgpack
/ DecodeInt
Method
DecodeInt
decode_number.go:241–244 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
239
}
240
241
func
(d *Decoder) DecodeInt() (int, error) {
242
n, err := d.DecodeInt64()
243
return
int(n), err
244
}
245
246
func
(d *Decoder) DecodeInt8() (int8, error) {
247
n, err := d.DecodeInt64()
Callers
2
Decode
Method · 0.95
DecodeMsgpack
Method · 0.80
Calls
1
DecodeInt64
Method · 0.95
Tested by
1
DecodeMsgpack
Method · 0.64