A floating-point value. ある浮動小数点値。
minimum(_:_:)
Availability
- iOS 14.0+
- iPadOS 14.0+
- macOS 11.0+
- Mac Catalyst 14.5+
- tvOS 14.0+
- watchOS 7.0+
- Xcode 12.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
x
y
Another floating-point value. もう1つの浮動小数点値。
Return Value 戻り値
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 min
operation defined by the IEEE 754 specification.
minimum
メソッドはmin
演算を実装します、それはIEEE 754仕様によって定義されます。
Note 注意
This documentation comment was inherited from Floating
.
この文書化コメントは、Floating
から引き継がれました。