The integer to convert to a floating-point value. 浮動小数点値へ変換されることになる整数。
Generic Initializer
init(exactly:)
Creates a new value, if the given integer can be represented exactly.
与えられた整数が正確に表現できるならば、新しい値を作成します。
Availability
- macOS 10.10+
- Mac Catalyst 13.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init?<Source>(exactly value: Source) where Source : BinaryInteger
Parameters パラメータ
value
Discussion 解説
If the given integer cannot be represented exactly, the result is nil
.
与えられた整数が正確に表現できないならば、結果はnil
です。