github.com/tetratelabs/wazero@v1.7.3-0.20240513003603-48f702e154b5/internal/u32/u32.go (about) 1 package u32 2 3 // LeBytes returns a byte slice corresponding to the 4 bytes in the uint32 in little-endian byte order. 4 func LeBytes(v uint32) []byte { 5 return []byte{ 6 byte(v), 7 byte(v >> 8), 8 byte(v >> 16), 9 byte(v >> 24), 10 } 11 }