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
から引き継がれました。