min abstract method

Float32x4 min(
  1. Float32x4 other
)

Lane-wise minimum.

For each lane select the lesser of the lane value of this and other.

The result is the lesser of the two lane values if either is lesser. The result is unspecified if either lane contains a NaN value or if the values are -0.0 and 0.0, so that neither value is smaller or greater than the other. Different platforms may give different results in those cases, but always one of the lane values.

Returns the result for each lane.

Implementation

Float32x4 min(Float32x4 other);