在Swift 4中使用reduce时,“上下文闭包类型需要2个参数”错误

时间:2017-09-26 16:56:16

标签: arrays swift reduce swift4 equatable

以下代码在Swift 3中编译

extension Array where Element: Equatable {
    var removeDuplicate: [Element] {
        return reduce([]){ $0.0.contains($0.1) ? $0.0 : $0.0 + [$0.1] }
    }
}

但产生错误

  

错误:上下文闭包类型'(_,_) - > _'需要2个参数,但在封闭体中使用了1个

在Swift 4中的

如何转换此代码以在Swift 4中编译?

1 个答案:

答案 0 :(得分:9)

传递给reduce的闭包需要2个参数,例如$0$1用速记符号表示:

extension Array where Element: Equatable {
    var removeDuplicate: [Element] {
        return reduce([]) { $0.contains($1) ? $0 : $0 + [$1] }
    }
}

(这在Swift 3和4中编译。)

在Swift 3中,您可以使用单个参数$0,这将被推断为元素$0.0$0.1的元组。 由于SE-0110 Distinguish between single-tuple and multiple-argument function types,这在Swift 4中不再可能。

这是另一个证明变化的例子:这个

let clo1: (Int, Int) -> Int = { (x, y) in x + y }
let clo2: ((Int, Int)) -> Int = { z in z.0 + z.1 }

都在Swift 3和4中编译,但是这个

let clo3: (Int, Int) -> Int = { z in z.0 + z.1 }

仅在Swift 3中编译,而不是在Swift 4中编译。