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

Function AppendInt8

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

AppendInt8 appends an int8 to the slice

(b []byte, i int8)

Source from the content-addressed store, hash-verified

138
139// AppendInt8 appends an int8 to the slice
140func AppendInt8(b []byte, i int8) []byte { return AppendInt64(b, int64(i)) }
141
142// AppendInt16 appends an int16 to the slice
143func AppendInt16(b []byte, i int16) []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…