Load64 will load from b at index i.
(b []byte, i I)
| 23 | |
| 24 | // Load64 will load from b at index i. |
| 25 | func Load64[I Indexer](b []byte, i I) uint64 { |
| 26 | return binary.LittleEndian.Uint64(b[i:]) |
| 27 | } |
| 28 | |
| 29 | // Store16 will store v at b. |
| 30 | func Store16(b []byte, v uint16) { |
no outgoing calls
no test coverage detected
searching dependent graphs…