MCPcopy
hub / github.com/tinylib/msgp / AppendUint32

Function AppendUint32

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

AppendUint32 appends a uint32 to the slice

(b []byte, u uint32)

Source from the content-addressed store, hash-verified

188
189// AppendUint32 appends a uint32 to the slice
190func AppendUint32(b []byte, u uint32) []byte { return AppendUint64(b, uint64(u)) }
191
192// AppendBytes appends bytes to the slice as MessagePack 'bin' data
193func AppendBytes(b []byte, bts []byte) []byte {

Callers 4

MarshalMsgMethod · 0.92
MarshalMsgMethod · 0.92
AppendIntfFunction · 0.85

Calls 1

AppendUint64Function · 0.85

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…