A floating-point value to compare to this value. この値と比較される浮動小数点値。
isTotallyOrdered(belowOrEqualTo:)
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 パラメータ
other
Return Value 戻り値
true
if this value is ordered below or the same as other
in a total ordering of the floating-point type; otherwise, false
.
true
、この値が浮動小数点型の全順序においてother
と同じまたは下に順序付けられるならば;そうでなければ、false
。
Discussion 解説
This relation is a refinement of the less-than-or-equal-to operator (<=
) that provides a total order on all values of the type, including signed zeros and NaNs.
この関係は、より少ないか等しい演算子(<=
の改良版です、それは、符号付きゼロとNaNを含む、その型のすべての値に関する全順序を提供します。
The following example uses is
to sort an array of floating-point values, including some that are NaN:
以下の例は、is
を使って、NaNである何かを含んでいる、浮動小数点値の配列をソートします:
The is
method implements the total order relation as defined by the IEEE 754 specification.
is
メソッドは、全順序関係をIEEE 754仕様によって定義されるとおりに実装します。
Note 注意
This documentation comment was inherited from Floating
.
この文書化コメントは、Floating
から引き継がれました。