Generic Initializer

init(exactly:)

Creates a new decimal value exactly representing the provided integer. 提供された整数を正確に表している新しい10進値を作成します。

Declaration 宣言

init?<T>(exactly source: T) where T : BinaryInteger

Parameters パラメータ

source

The integer to convert. 変換する整数。

Discussion 議論

If source isn't representable as a Decimal instance, the result is nil. sourceDecimalインスタンスとして表現可能でないならば、結果はnilです。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Creating a Decimal from an Integer 整数から10進数を作成する