Enumeration Case 列挙ケース

FloatingPointRoundingRule.awayFromZero

Round to the closest allowed value whose magnitude is greater than or equal to that of the source. それの規模がソースのそれより大きいか等しい最も近い許される値に丸めます。

Declaration 宣言

case awayFromZero

Discussion 解説

The following example shows the results of rounding numbers using this rule: 以下の例は、この規則を使っての数の丸めの結果を示します:


(5.2).rounded(.awayFromZero)
// 6.0
(5.5).rounded(.awayFromZero)
// 6.0
(-5.2).rounded(.awayFromZero)
// -6.0
(-5.5).rounded(.awayFromZero)
// -6.0