Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/vmihailenco/msgpack
/ DecodeInt8
Method
DecodeInt8
decode_number.go:246–249 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
244
}
245
246
func
(d *Decoder) DecodeInt8() (int8, error) {
247
n, err := d.DecodeInt64()
248
return
int8(n), err
249
}
250
251
func
(d *Decoder) DecodeInt16() (int16, error) {
252
n, err := d.DecodeInt64()
Callers
1
Decode
Method · 0.95
Calls
1
DecodeInt64
Method · 0.95
Tested by
no test coverage detected