func readDouble()

in Sources/TwitterApacheThrift/ThriftBinary.swift [148:151]


    func readDouble() throws -> Double {
        let ui64 = try readUInt64()
        return Double(bitPattern: ui64)
    }