MCPcopy 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
241func (d *Decoder) DecodeInt() (int, error) {
242 n, err := d.DecodeInt64()
243 return int(n), err
244}
245
246func (d *Decoder) DecodeInt8() (int8, error) {
247 n, err := d.DecodeInt64()

Callers 2

DecodeMethod · 0.95
DecodeMsgpackMethod · 0.80

Calls 1

DecodeInt64Method · 0.95

Tested by 1

DecodeMsgpackMethod · 0.64