Skip to content

Instantly share code, notes, and snippets.

View satsen's full-sized avatar

satsen

View GitHub Profile
@satsen
satsen / VLQReader.java
Last active July 18, 2023 11:05
VLQ Reader and Writer for Java
import java.io.IOException;
import java.io.InputStream;
/**
* @see <a href="https://en.wikipedia.org/wiki/Variable-length_quantity">Variable-length quantity on Wikipedia</a>
* @see <a href="https://github.com/protocolbuffers/protobuf/blob/main/java/core/src/main/java/com/google/protobuf/CodedInputStream.java">protobuf/CodedInputStream.java</a>
*/
public class VLQReader {
private VLQReader() {}