Required Static Propertyswift 6.0.1Swift

    radix

    The radix, or base of exponentiation, for a floating-point type.

    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:

    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.

    Other requirements

    View members

    Hide members

    This section is hidden by default because it contains too many (57) members.

    Type members

    Instance members

    Citizens in Swift

    Default implementations