Type Property 型プロパティ

radix

The radix, or base of exponentiation, for a floating-point type. ある浮動小数点型の基数、または冪演算の底。

Declaration 宣言

static var radix: Int { get }

Discussion 解説

The magnitude of a floating-point value x of type F can be calculated by using the following formula, where ** is exponentiation: Fの浮動小数点値xの規模は、以下の公式を使って計算されることができます、そこで**は冪演算です:


let magnitude = x.significand * F.radix ** x.exponent

A conforming type may use any integer radix, but values other than 2 (for binary floating-point types) or 10 (for decimal floating-point types) are extraordinarily rare in practice. 準拠する型は、あらゆる整数基数を使うことができます、しかし2(バイナリ浮動小数点型に対して)または10(10進浮動小数点型に対して)より他の値は、実際には非常に稀です。

See Also 参照

Working with Binary Representation バイナリ表現を扱う