The value to use for the new instance. 新しいインスタンスのために使う値。
Initializer
init(exactly:)
Creates a new instance initialized to the given value, if it can be represented without rounding.
それが丸めなしに表されるならば、与えられた値に初期化される新しいインスタンスを作成します。
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?(exactly other: Double
)
Parameters パラメータ
other
Discussion 解説
If other
can’t be represented as an instance of Float16
without rounding, the result of this initializer is nil
. In particular, passing NaN as other
always results in nil
.
other
がFloat16
のインスタンスとして表されることが丸めることなしには可能でないならば、このイニシャライザの結果はnil
です。とりわけ、NaNをother
として渡すことは常にnil
の結果となります。