greaterThanOrEqual abstract method

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

Lane-wise signed integer greater-than-or-equal 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 greater than or equal to 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 greaterThanOrEqual(Int32x4 other);