Variable Len Reader
Description
A Rust crate to read variable length data. (VarInt)
Read and write compressed data. Of each such byte, only 7 bits will be used to describe the actual value since its most significant bit indicates whether the next byte is part of the same int. Micro-optimization for int values that are expected to have values below 128.
Usage
Add this to your Cargo.toml
:
[]
= "*"
Example
use ;
use crate;