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
All across the documentation, 64-bit integer using protobuf varint are mentioned with type written as:
From 1 byte (included) to 9 bytes (included)
This would be the case for up to 63 bits, however storing an extra 64th bit as protobuf varint (values 1 << 63 and above) would require one extra byte, so this should be corrected as:
From 1 byte (included) to 10 bytes (included)
The text was updated successfully, but these errors were encountered:
All across the documentation,
64-bit integer using protobuf varint
are mentioned with type written as:This would be the case for up to 63 bits, however storing an extra 64th bit as protobuf varint (values
1 << 63
and above) would require one extra byte, so this should be corrected as:The text was updated successfully, but these errors were encountered: