varints
A variable length integer encoding implementation inspired by SQLite.
Unstable API.
Consts
Procs
proc readVu64(z: openArray[byte]; pResult: var uint64): int {...}{.raises: [], tags: [].}
- Source Edit
proc writeVu64(z: var openArray[byte]; x: uint64): int {...}{.raises: [], tags: [].}
- Write a varint into z. The buffer z must be at least 9 characters long to accommodate the largest possible varint. Returns the number of bytes used. Source Edit
proc encodeZigzag(x: int64): uint64 {...}{.inline, raises: [], tags: [].}
- Source Edit
proc decodeZigzag(x: uint64): int64 {...}{.inline, raises: [], tags: [].}
- Source Edit
© 2006–2021 Andreas Rumpf
Licensed under the MIT License.
https://nim-lang.org/docs/varints.html