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

Function AppendInt32

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

AppendInt32 appends an int32 to the slice

(b []byte, i int32)

Source from the content-addressed store, hash-verified

144
145// AppendInt32 appends an int32 to the slice
146func AppendInt32(b []byte, i int32) []byte { return AppendInt64(b, int64(i)) }
147
148// AppendUint64 appends a uint64 to the slice
149func AppendUint64(b []byte, u uint64) []byte {

Callers 5

MarshalMsgMethod · 0.92
MarshalMsgMethod · 0.92
AppendIntfFunction · 0.85

Calls 1

AppendInt64Function · 0.85

Used in the wild real call sites across dependent graphs

searching dependent graphs…