MCPcopy Create free account
hub / github.com/ZeppelinMC/Zeppelin / AppendByte

Function AppendByte

protocol/net/io/encoding/encoding.go:10–12  ·  view source on GitHub ↗
(data []byte, b int8)

Source from the content-addressed store, hash-verified

8)
9
10func AppendByte(data []byte, b int8) []byte {
11 return append(data, byte(b))
12}
13
14func AppendUbyte(data []byte, b byte) []byte {
15 return append(data, b)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected