abs abstract method
- @Since.new("3.14")
Returns a new Int32x4 where each lane's value is the int.abs()
of the corresponding lane in this value, converted to 32-bits
as by .toSigned(32) (int.toSigned).
That makes the abs of the minimal 32-bit signed value, -0x80000000,
be the same negative value again.
Implementation
@Since("3.14")
Int32x4 abs();