(data []byte, b int8)
| 8 | ) |
| 9 | |
| 10 | func AppendByte(data []byte, b int8) []byte { |
| 11 | return append(data, byte(b)) |
| 12 | } |
| 13 | |
| 14 | func AppendUbyte(data []byte, b byte) []byte { |
| 15 | return append(data, b) |
nothing calls this directly
no outgoing calls
no test coverage detected