...

Source file src/github.com/tetratelabs/wazero/internal/u32/u32.go

Documentation: github.com/tetratelabs/wazero/internal/u32

     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  }
    12  

View as plain text