AppendUint8 appends a uint8 to the slice
(b []byte, u uint8)
| 179 | |
| 180 | // AppendUint8 appends a uint8 to the slice |
| 181 | func AppendUint8(b []byte, u uint8) []byte { return AppendUint64(b, uint64(u)) } |
| 182 | |
| 183 | // AppendByte is analogous to AppendUint8 |
| 184 | func AppendByte(b []byte, u byte) []byte { return AppendUint8(b, u) } |
searching dependent graphs…