static var radix: Int
The radix, or base of exponentiation, for a floating-point type.
ある浮動小数点型の基数、または冪演算の底。
Availability
Technology
static var radix: Int
{ get }
The magnitude of a floating-point value x
of type F
can be calculated by using the following formula, where **
is exponentiation:
型F
の浮動小数点値x
の規模は、以下の公式を使って計算されることができます、そこで**
は冪演算です:
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進浮動小数点型に対して)より他の値は、実際には非常に稀です。
static var radix: Int