8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Parsers should handle all edge cases (e.g. EOFs and malicious input) and have test coverage thereof.
For simplicity, I've only supported uvarints <= 127 for now.
Note: uvarint_encode(n) == uint8_encode(n) for n <= 127
uvarint_encode(n) == uint8_encode(n)
n <= 127