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

Function AppendByte

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

AppendByte is analogous to AppendUint8

(b []byte, u byte)

Source from the content-addressed store, hash-verified

182
183// AppendByte is analogous to AppendUint8
184func AppendByte(b []byte, u byte) []byte { return AppendUint8(b, u) }
185
186// AppendUint16 appends a uint16 to the slice
187func AppendUint16(b []byte, u uint16) []byte { return AppendUint64(b, uint64(u)) }

Callers 2

MarshalMsgMethod · 0.92
MarshalMsgMethod · 0.92

Calls 1

AppendUint8Function · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…