MCPcopy Index your code
hub / github.com/tinylib/msgp / AppendUint

Function AppendUint

msgp/write_bytes.go:178–178  ·  view source on GitHub ↗

AppendUint appends a uint to the slice

(b []byte, u uint)

Source from the content-addressed store, hash-verified

176
177// AppendUint appends a uint to the slice
178func AppendUint(b []byte, u uint) []byte { return AppendUint64(b, uint64(u)) }
179
180// AppendUint8 appends a uint8 to the slice
181func AppendUint8(b []byte, u uint8) []byte { return AppendUint64(b, uint64(u)) }

Callers 3

MarshalMsgMethod · 0.92
MarshalMsgMethod · 0.92

Calls 1

AppendUint64Function · 0.85

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…