(i int64)
| 168 | } |
| 169 | |
| 170 | func LeEncodeInt64(i int64) []byte { |
| 171 | b := make([]byte, 8) |
| 172 | binary.LittleEndian.PutUint64(b, uint64(i)) |
| 173 | return b |
| 174 | } |
| 175 | |
| 176 | func LeEncodeUint64(i uint64) []byte { |
| 177 | b := make([]byte, 8) |
no outgoing calls
no test coverage detected
searching dependent graphs…