lessThan abstract method

  1. @Since.new("3.14")
Int32x4 lessThan(
  1. Int32x4 other
)

Lane-wise signed integer less-than comparison.

The result for a lane is a 32-bit signed integer which is -1 (all bits set) if the value from this object is less than the value from other, using signed comparison, and 0 (all bits cleared) otherwise.

Returns four values that are always either 0 or -1.

Implementation

@Since("3.14")
Int32x4 lessThan(Int32x4 other);