A floating-point value to be converted. 変換されることになる浮動小数点値。
Generic Initializer
init(exactly:)
Creates a new instance from the given value, if it can be represented exactly.
新しいインスタンスをこの与えられた値から作成します、もしそれが正確に表現できるならば。
Availability
- iOS 14.0+
- iPadOS 14.0+
- macOS 11.0+
- Mac Catalyst 14.5+
- tvOS 14.0+
- watchOS 7.0+
- Xcode 12.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init?<Source>(exactly value: Source) where Source : BinaryFloatingPoint
Parameters パラメータ
value
Discussion 解説
If the given floating-point value cannot be represented exactly, the result is nil
.
与えられた浮動小数点値が正確に表現できないならば、結果はnil
です。