AppendByte is analogous to AppendUint8
(b []byte, u byte)
| 182 | |
| 183 | // AppendByte is analogous to AppendUint8 |
| 184 | func AppendByte(b []byte, u byte) []byte { return AppendUint8(b, u) } |
| 185 | |
| 186 | // AppendUint16 appends a uint16 to the slice |
| 187 | func AppendUint16(b []byte, u uint16) []byte { return AppendUint64(b, uint64(u)) } |
no test coverage detected
searching dependent graphs…