Clarify varInt ranges

This commit is contained in:
Frank Galligan 2017-10-03 15:15:30 -07:00
parent 6788c25aaa
commit 6c4a7dd324

View File

@ -49,6 +49,12 @@ byte.
* varUI32 and varUI64 types must be decoded by the LEB128() function. * varUI32 and varUI64 types must be decoded by the LEB128() function.
* varUI32 can represent vaules in the range 0 to 2^32 - 1.
* E.g. 0x10000000 will be stored using 5 bytes.
* varUI64 can represent vaules in the range 0 to 2^64 - 1.
* E.g. 0x100000000000000 will be stored using 9 bytes.
### General Conventions ### General Conventions