AppendInt8 appends an int8 to the slice
(b []byte, i int8)
| 138 | |
| 139 | // AppendInt8 appends an int8 to the slice |
| 140 | func AppendInt8(b []byte, i int8) []byte { return AppendInt64(b, int64(i)) } |
| 141 | |
| 142 | // AppendInt16 appends an int16 to the slice |
| 143 | func AppendInt16(b []byte, i int16) []byte { return AppendInt64(b, int64(i)) } |
searching dependent graphs…