func readListMetadata()

in Sources/TwitterApacheThrift/ThriftBinary.swift [211:215]


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