func isTotallyOrdered (belowOrEqualTo : Self) -> Bool
A floating-point value to compare to this value. この値と比較される浮動小数点値。
Availability
Technology
func isTotallyOrdered(belowOrEqualTo other: Self) -> Bool
other
A floating-point value to compare to this 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
。
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仕様によって定義されるとおりに実装します。
func isTotallyOrdered (belowOrEqualTo : Self) -> Bool