Float32x4.fromInt32x4Bits constructor

Float32x4.fromInt32x4Bits(
  1. Int32x4 bits
)

Creates a Float32x4 with 32-bit float values from the provided bits.

The created value has Float32x4.x, Float32x4.y, Float32x4.z and Float32x4.w values, which are the 32-bit floating point values of the bit-representations of the corresponding lanes of bits.

The conversion is performed using the platform endianness for both 32-bit integers and 32-bit floating point numbers.

Implementation

external factory Float32x4.fromInt32x4Bits(Int32x4 bits);