AppendInt16 appends an int16 to the slice
(b []byte, i int16)
| 141 | |
| 142 | // AppendInt16 appends an int16 to the slice |
| 143 | func AppendInt16(b []byte, i int16) []byte { return AppendInt64(b, int64(i)) } |
| 144 | |
| 145 | // AppendInt32 appends an int32 to the slice |
| 146 | func AppendInt32(b []byte, i int32) []byte { return AppendInt64(b, int64(i)) } |
searching dependent graphs…