var bitPattern : UInt32
The bit pattern of the value’s encoding.
値の持つエンコーディングのビットパターン。
var significandBitPattern : UInt32
The raw encoding of the value’s significand field.
値の仮数フィールドの生のエンコーディング。
var significandWidth : Int
The number of bits required to represent the value’s significand.
値の仮数を表すのに必要とされるビットの数。
var exponentBitPattern : UInt
The raw encoding of the value’s exponent field.
値のもつ指数部の生のエンコーディング。
static var significandBitCount : Int
The available number of fractional significand bits.
利用可能な小数の仮数ビットの数。
static var exponentBitCount : Int
The number of bits used to represent the type’s exponent.
型のもつ指数を表すのに使われるビットの数。
init(bitPattern : UInt32)
Creates a new value with the given bit pattern.
与えられたビットパターンから新しい値を作成します。
init(sign: FloatingPointSign, exponentBitPattern : UInt, significandBitPattern : UInt32)
Creates a new instance from the specified sign and bit patterns.
指定された符号とビットパターンから新しいインスタンスを作成します。
init(nan: Float.RawSignificand, signaling: Bool)
Creates a NaN (“not a number”) value with the specified payload.
指定されたペイロードをもつNaN(「非数」)値を作成します。
typealias Float.Exponent
A type that can represent any written exponent.
何らかの書かれた指数を表すことができる型。
typealias Float.RawSignificand
A type that represents the encoded significand of a value.
ある値のエンコードされた仮数を表す型。