We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code
string src; writefln("Packed '%s'", src.pack); writefln("Unpacked '%s'", src.pack.unpack);
Output
Packed '[192]' object.Exception@../../../.dub/packages/msgpack-d-1.0.0-beta.2/src/msgpack.d(4599): front is called with non array object. type = nil
Same issue for code
writefln("Packed '%s'", null.pack); writefln("Unpacked '%s'", null.pack.unpack);
Packing is 192 == 0xC0 == Nil AFAIK should be 160 == 0xA0 == Fixed string
Ok now trying unpack empty string
writefln("Unpacked '%s'", [0xA0].unpack);
Fails
msgpack.UnpackException@../../../.dub/packages/msgpack-d-1.0.0-beta.2/src/msgpack.d(305): Deserialization failure
The text was updated successfully, but these errors were encountered:
This is expected behaviour. Unpacked is a range object so you should check value type before calling Range API.
Unpacked
writefln("Packed '%s'", null.pack); Packing is 192 == 0xC0 == Nil AFAIK should be 160 == 0xA0 == Fixed string
What does this sentence mean? null is not string so msgpack can't serialize null as fixed string.
null
Sorry, something went wrong.
Sory, that description for first code sample
No branches or pull requests
Code
Output
Same issue for code
Packing is 192 == 0xC0 == Nil
AFAIK should be 160 == 0xA0 == Fixed string
Ok now trying unpack empty string
Fails
The text was updated successfully, but these errors were encountered: