(valBytes []byte)
| 8 | ) |
| 9 | |
| 10 | func bytesToLEUint(valBytes []byte) uint64 { |
| 11 | val := uint64(0) |
| 12 | for i, b := range valBytes { |
| 13 | val += uint64(b) << (uint(i) * 8) |
| 14 | } |
| 15 | return val |
| 16 | } |
| 17 | |
| 18 | const NullLength = uint64(^uint32(0)) |
| 19 |
no outgoing calls
no test coverage detected