(data []byte)
| 55 | } |
| 56 | |
| 57 | func readTimestampFromEntry(data []byte) uint64 { |
| 58 | return binary.LittleEndian.Uint64(data) |
| 59 | } |
| 60 | |
| 61 | func readKeyFromEntry(data []byte) string { |
| 62 | length := binary.LittleEndian.Uint16(data[timestampSizeInBytes+hashSizeInBytes:]) |
no outgoing calls
searching dependent graphs…