The minimum of x and y, or whichever is a number if the other is NaN.xとyの最小、または他方がNaNならば数である方。
Discussion
解説
This method returns the minimum of two values, preserving order and eliminating NaN when possible. For two values x and y, the result of minimum(x, y) is x if x <= y, y if y < x, or whichever of x or y is a number if the other is a quiet NaN. If both x and y are NaN, or either x or y is a signaling NaN, the result is NaN.
このメソッドは、2つの値のうち最小を返します、可能な場合は桁数の保全およびNaNの排除をします。2つの値xとyに対して、minimum(x, y)の結果はx <= yならばx、y < xならばy、または他のものがクワイエットNaNならばxかyどちらか数である方です。xとyの両方がNaN、またはxまたはyのどちらかがシグナルNaNならば、結果はNaNです。
The minimum method implements the minNum operation defined by the IEEE 754 specification.minimumメソッドはminNum演算を実装します、それはIEEE 754仕様によって定義されます。
Returns a Boolean value indicating whether this instance should precede or tie positions with the given value in an ascending sort.
このインスタンスがある昇順ソートにおいて、与えられた値より前にくるまたは同じ位置かどうかを指し示すブール値を返します。