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

Function AppendInt16

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

AppendInt16 appends an int16 to the slice

(b []byte, i int16)

Source from the content-addressed store, hash-verified

141
142// AppendInt16 appends an int16 to the slice
143func AppendInt16(b []byte, i int16) []byte { return AppendInt64(b, int64(i)) }
144
145// AppendInt32 appends an int32 to the slice
146func AppendInt32(b []byte, i int32) []byte { return AppendInt64(b, int64(i)) }

Callers 4

MarshalMsgMethod · 0.92
MarshalMsgMethod · 0.92
AppendIntfFunction · 0.85

Calls 1

AppendInt64Function · 0.85

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…