The closure passed to reduce takes 2 parameters, e.g. $0 and $1 in the shorthand notation:
extension Array where Element: Equatable {
var removeDuplicate: [Element] {
return reduce([]) { $0.contains($1) ? $0 : $0 + [$1] }
}
}
(This compiles in both Swift 3 and 4.)
In Swift 3 you could use single parameter $0, which would the be inferred as a tuple with elements $0.0 and $0.1.
This is not possible anymore in Swift 4, as a consequence of SE-0110 Distinguish between single-tuple and multiple-argument function types.
Here is another example demonstrating the change: This
let clo1: (Int, Int) -> Int = { (x, y) in x + y }
let clo2: ((Int, Int)) -> Int = { z in z.0 + z.1 }
both compiles in Swift 3 and 4, but this
let clo3: (Int, Int) -> Int = { z in z.0 + z.1 }
compiles only in Swift 3, not in Swift 4.
(0)in the code. But even without that error there remains a Swift 3 to 4 transition problem. I have taken the liberty to edit your question in a way that it is (hopefully) more useful to future readers. – Please check if that is OK for you.