File: README.md

package info (click to toggle)
rust-unsigned-varint 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
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