u32.go

 1package u32
 2
 3// LeBytes returns a byte slice corresponding to the 4 bytes in the uint32 in little-endian byte order.
 4func LeBytes(v uint32) []byte {
 5	return []byte{
 6		byte(v),
 7		byte(v >> 8),
 8		byte(v >> 16),
 9		byte(v >> 24),
10	}
11}