decodeVarUInt7 static method
Decodes a varUInt7.
Implementation
static decodeVarUInt7(int b0) {
final int decoded = b0 & 0x7F;
return decoded;
}
Decodes a varUInt7.
static decodeVarUInt7(int b0) {
final int decoded = b0 & 0x7F;
return decoded;
}