pub const fn u32x4<const host: bool = true>(
a0: u32,
a1: u32,
a2: u32,
a3: u32
) -> v128
Available on WebAssembly and
target_family="wasm"
only.Expand description
Materializes a SIMD value from the provided operands.
If possible this will generate a v128.const
instruction, otherwise it may
be lowered to a sequence of instructions to materialize the vector value.