MCPcopy Index your code
hub / github.com/vmihailenco/msgpack / DecodeInt32

Method DecodeInt32

decode_number.go:256–259  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

254}
255
256func (d *Decoder) DecodeInt32() (int32, error) {
257 n, err := d.DecodeInt64()
258 return int32(n), err
259}
260
261func decodeFloat32Value(d *Decoder, v reflect.Value) error {
262 f, err := d.DecodeFloat32()

Callers 1

DecodeMethod · 0.95

Calls 1

DecodeInt64Method · 0.95

Tested by

no test coverage detected