func rounded(FloatingPointRoundingRule) -> Self
Returns this value rounded to an integral value using the specified rounding rule.
指定された丸め規則を使って整数値に丸められたこの値を返します。
Availability
Technology
func rounded(_ rule: FloatingPointRoundingRule
) -> Self
rule
The rounding rule to use. この丸め規則を使います。
The integral value found by rounding using rule
.
rule
を使って丸められることによって見出される整数値。
The following example rounds a value using four different rounding rules: 以下の例はある値を4つの丸め規則を使って丸めます:
For more information about the available rounding rules, see the Floating
enumeration. To round a value using the default “schoolbook rounding”, you can use the shorter rounded()
method instead.
利用可能な丸め規則についてのさらなる情報として、Floating
列挙を見てください。省略時の「教科書丸め」を使って値を丸めるには、あなたはより短いrounded()
メソッドを代わりに使うことができます。
func rounded(FloatingPointRoundingRule) -> Self