func readSetMetadata()

in Sources/TwitterApacheThrift/ThriftBinary.swift [202:206]


    func readSetMetadata() throws -> (elementType: ThriftType, size: Int) {
        let type = try readByte()
        let size = try readInt32()
        return (try ThriftType(coreValue: type), Int(size))
    }