MCPcopy
hub / github.com/segmentio/kafka-go / sizeOfUnsignedVarInt

Function sizeOfUnsignedVarInt

protocol/size.go:31–33  ·  view source on GitHub ↗
(i uint64)

Source from the content-addressed store, hash-verified

29}
30
31func sizeOfUnsignedVarInt(i uint64) int {
32 return (bits.Len64(i|1) + 6) / 7
33}

Callers 2

TestVarIntsFunction · 0.85
sizeOfVarIntFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestVarIntsFunction · 0.68