Giter Club home page Giter Club logo

Comments (2)

sudeep9 avatar sudeep9 commented on August 23, 2024

Here is the test which you can execute readily:

func TestUint32(t *testing.T) {
	n := uint32(10)
	v := []interface{}{n}

	buf, err := msgpack.Marshal(v)
	if err != nil {
		t.Fatal(err)
	}

	var x interface{}

	err = msgpack.Unmarshal(buf, &x)
	if err != nil {
		t.Fatal(err)
	}

	x2 := x.([]interface{})

	if reflect.TypeOf(v[0]) != reflect.TypeOf(x2[0]) {
		t.Fatalf("Type mismatch, expected %v, got %v", reflect.TypeOf(v[0]), reflect.TypeOf(x2[0]))
	}

}

from msgpack.

vmihailenco avatar vmihailenco commented on August 23, 2024

There are 2 unrelated issues here:

  • you are decoding into interface{} and for simplicity lib returns only int64 and uint64 when decoding numbers. If you need uint32 - replace interface{} with uint32.
  • small uint32 numbers are encoded as uint8 (or just small number) to save space. Exact type is loosed, but it does not matter usually because you can decode number into int8/int16/int32/int64 as you need.

I agree that it is a bit confusing, but I think this is the right behavior that does not cause any problems in practise.

from msgpack.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.