init<T>(T)
Creates a new instance from the given integer.
与えられた整数から新しいインスタンスを作成します。
init?<T>(exactly: T)
Creates a new instance from the given integer, if it can be represented exactly.
与えられた整数から新しいインスタンスを作成します、もしそれが正確に表現できるならば。
init<Other>(clamping: Other)
Creates a new instance with the representable value that’s closest to the given integer.
与えられた整数に最も近い表現可能な値を使って新しいインスタンスを作成します。
init<T>(truncatingIfNeeded : T)
Creates a new instance from the bit pattern of the given instance by truncating or sign-extending if needed to fit this type.
もしこの型に適合するのに必要ならば切り詰めるか符号拡張によって、指定インスタンスのビットパターンから新しいインスタンスを作成します。
init(bitPattern : UInt)
Creates a new instance with the same memory representation as the given value.
与えられた値と同じメモリ表現で新しいインスタンスを作成します。