https://github.com/paritytech/unsigned-varint
https://github.com/paritytech/unsigned-varint
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/paritytech/unsigned-varint
- Owner: paritytech
- License: mit
- Created: 2018-07-11T12:56:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-01T17:48:31.000Z (over 2 years ago)
- Last Synced: 2025-04-02T08:09:19.072Z (10 months ago)
- Language: Rust
- Size: 104 KB
- Stars: 21
- Watchers: 7
- Forks: 22
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
unsigned-varint encoding
========================
Unsigned varint encodes unsigned integers in 7-bit groups. The most
significant bit (MSB) in each byte indicates if another byte follows
(MSB = 1), or not (MSB = 0).
For details see: https://github.com/multiformats/unsigned-varint