This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
105 B
Go

package gun
func UVarintLen(x uint64) int {
i := 0
for x >= 0x80 {
x >>= 7
i++
}
return i + 1
}