Int32x4.splat constructor

  1. @Since.new("3.14")
Int32x4.splat(
  1. int value
)

Creates an Int32x4 with the same 32-bit integer value in all four lanes.

The created value has the same x, y, z and w value, which is the low 32 bits of value.

Implementation

@Since("3.14")
external factory Int32x4.splat(int value);