The rounding rule to use. この丸め規則を使います。
Instance Method
インスタンスメソッド
round(_:)
Rounds the value to an integral value using the specified rounding rule.
指定された丸め規則を使ってこの値を整数値に丸めます。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
mutating func round(_ rule: FloatingPointRoundingRule
)
Parameters パラメータ
rule
Discussion 解説
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 round()
method instead.
利用可能な丸め規則についてのさらなる情報として、Floating
列挙を見てください。省略時の「教科書丸め」を使って値を丸めるには、あなたはより短いround()
メソッドを代わりに使うことができます。
Note 注意
This documentation comment was inherited from Floating
.
この文書化コメントは、Floating
から引き継がれました。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Rounding Values 値を丸める
func rounded() -> Float
Returns this value rounded to an integral value using “schoolbook rounding.”
「教科書丸め」を使って整数値に丸めたこの値を返します。
func rounded(FloatingPointRoundingRule) -> Float
Returns this value rounded to an integral value using the specified rounding rule.
指定された丸め規則を使って整数値に丸められたこの値を返します。
func round()
Rounds this value to an integral value using “schoolbook rounding.”
「教科書丸め」を使ってこの値を整数値に丸めます。