MCPcopy 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
246func (d *Decoder) DecodeInt8() (int8, error) {
247 n, err := d.DecodeInt64()
248 return int8(n), err
249}
250
251func (d *Decoder) DecodeInt16() (int16, error) {
252 n, err := d.DecodeInt64()

Callers 1

DecodeMethod · 0.95

Calls 1

DecodeInt64Method · 0.95

Tested by

no test coverage detected