๐Ÿ…ฟ๏ธBinaryFloatingPoint

// ๐Ÿ…ฟ๏ธ BinaryFloatingPoint
protocol BinaryFloatingPoint {

    // instance properties
    var exponentBitPattern: Self.RawExponent { get }
    var significandBitPattern: Self.RawSignificand { get }
    
    // type properties
    static var exponentBitCount: Int { get }
    static var significandBitCount: Int { get }
}

Last updated