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
- iOS 14.0+
- iPadOS 14.0+
- macOS 11.0+
- Mac Catalyst 14.0+
- tvOS 14.0+
- watchOS 7.0+
- Xcode 12.0+
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
です。
Note 注意
This documentation comment was inherited from Floating
.
この文書化コメントは、Floating
から引き継がれました。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Converting with No Loss of Precision 精度の損失なしに変換する
init?<Source>(exactly: Source)
Creates a new instance from the given value, if it can be represented exactly.
新しいインスタンスをこの与えられた値から作成します、もしそれが正確に表現できるならば。
init?<Source>(exactly: Source)
Creates a new value, if the given integer can be represented exactly.
与えられた整数が正確に表現できるならば、新しい値を作成します。
init?(exactly: Double)
Creates a new instance initialized to the given value, if it can be represented without rounding.
それが丸めなしに表されるならば、与えられた値に初期化される新しいインスタンスを作成します。
init?(exactly: Float)
Creates a new instance initialized to the given value, if it can be represented without rounding.
それが丸めなしに表されるならば、与えられた値に初期化される新しいインスタンスを作成します。
init?(exactly: Float16)
Creates a new instance initialized to the given value, if it can be represented without rounding.
それが丸めなしに表されるならば、与えられた値に初期化される新しいインスタンスを作成します。
init?(exactly: Float80)
Creates a new instance initialized to the given value, if it can be represented without rounding.
それが丸めなしに表されるならば、与えられた値に初期化される新しいインスタンスを作成します。