Swift错误:'Sequence'要求类型'T'和'ArraySlice <T>'是等价的

dmr*_*r07 5 swift swift4

我正在尝试更新数学库以与Swift 3兼容,但我遇到了一个错误:

'Sequence' requires the types 'T' and 'ArraySlice<T>' be equivalent

关于Sequence的Apple文档建议makeIterator()方法返回一个迭代器.似乎迭代器返回grid变量中的一个元素,它是变量的T.我不太清楚我在这里缺少什么.任何意见将是有益的.

public struct Matrix<T> where T: FloatingPoint, T: ExpressibleByFloatLiteral {
    public typealias Element = T

    let rows: Int
    let columns: Int
    var grid: [Element]

    public init(rows: Int, columns: Int, repeatedValue: Element) {
        self.rows = rows
        self.columns = columns

        self.grid = [Element](repeating: repeatedValue, count: rows * columns)
    }
... 
}

extension Matrix: Sequence { // <-- getting error here
    public func makeIterator() -> AnyIterator<ArraySlice<Element>> {
        let endIndex = rows * columns
        var nextRowStartIndex = 0

        return AnyIterator {
            if nextRowStartIndex == endIndex {
                return nil
            }

            let currentRowStartIndex = nextRowStartIndex
            nextRowStartIndex += self.columns

            return self.grid[currentRowStartIndex..<nextRowStartIndex]
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

Mar*_*n R 5

您的代码可以很好地编译为 Swift 3.1 (Xcode 8.3.3)。错误

'Sequence' requires the types 'T' and 'ArraySlice<T>' be equivalent
Run Code Online (Sandbox Code Playgroud)

编译为 Swift 4(Xcode 9,目前是测试版)时发生,因为Sequence协议已经定义了

associatedtype Element where Self.Element == Self.Iterator.Element
Run Code Online (Sandbox Code Playgroud)

这与您的定义相冲突。你可以为你的类型别名选择一个不同的名称,或者只是删除它(并使用T):

public struct Matrix<T> where T: FloatingPoint, T: ExpressibleByFloatLiteral {

    let rows: Int
    let columns: Int
    var grid: [T]

    public init(rows: Int, columns: Int, repeatedValue: T) {
        self.rows = rows
        self.columns = columns

        self.grid = [T](repeating: repeatedValue, count: rows * columns)
    }
}

extension Matrix: Sequence {
    public func makeIterator() -> AnyIterator<ArraySlice<T>> {
        let endIndex = rows * columns
        var nextRowStartIndex = 0

        return AnyIterator {
            if nextRowStartIndex == endIndex {
                return nil
            }

            let currentRowStartIndex = nextRowStartIndex
            nextRowStartIndex += self.columns

            return self.grid[currentRowStartIndex..<nextRowStartIndex]
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

这可以编译并运行 Swift 3 和 4。