You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MessagePack serialized format knows the size of an Int, whether it's 8, 16, 32, or 64 bits. However the current IntegerValue class loses this information, and it forces the user to pick the right method, getShort, getInt, etc. It would be nice for IntegerValue to capture the original size of the integer when deserializing, and the same thing when it serializes.