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
Currently, ByteReader and ByteWriter traits do not support reading and writing of usize values. One reason for this is that usize may have different sizes on different platforms.
A way to get around this would be to use variable-length encoding for usize values. This would also allow us to provide proper serialization/deserialization for things like vectors and strings.
The text was updated successfully, but these errors were encountered:
Currently, ByteReader and ByteWriter traits do not support reading and writing of
usize
values. One reason for this is thatusize
may have different sizes on different platforms.A way to get around this would be to use variable-length encoding for
usize
values. This would also allow us to provide proper serialization/deserialization for things like vectors and strings.The text was updated successfully, but these errors were encountered: