ReadUint32 reads the uint32 value from the byte slice.
(b []byte)
| 56 | |
| 57 | // ReadUint32 reads the uint32 value from the byte slice. |
| 58 | func ReadUint32(b []byte) uint32 { |
| 59 | return NativeEndian.Uint32(b) |
| 60 | } |
| 61 | |
| 62 | // ReadUint64 reads the uint64 value from the byte slice. |
| 63 | func ReadUint64(b []byte) uint64 { |