最後のステートメントがエラー:Binary operator '==' cannot be applied to two '[[Simple]]’ operands
でコンパイルに失敗し、Simple
構造体を変更したり、ネストされた配列の等価チェックを実行できるようにする方法がありますまたは辞書)?ネストされた配列のスウィフト等価演算子
var i1: [Int] = [1]
var i2: [Int] = [1]
i1 == i2 // -> true
var i3: [[Int]] = [[1], [2]]
var i4: [[Int]] = [[1], [2]]
i3 == i4 // -> true
struct Simple: Equatable, Hashable {
let message: String
var hashValue: Int {
return message.hashValue
}
}
func ==(lhs: Simple, rhs: Simple) -> Bool {
return lhs.message == rhs.message
}
var a: [Simple] = [Simple(message: "a")]
var b: [Simple] = [Simple(message: "a")]
a == b // -> true
var x: [[Simple]] = [[Simple(message: "a")], [Simple(message: "b")]]
var y: [[Simple]] = [[Simple(message: "a")], [Simple(message: "b")]]
x == y // -> ERROR! Binary operator '==' cannot be applied to two '[[Simple]]’ operands
おそらく実装を 'lhs.elementsEqual(rhs、by:==)'に更新しますか? – kennytm
@kennytm:良い提案、ありがとう! –
提案:完了:https://github.com/apple/swift-evolution/blob/master/proposals/0143-conditional-conformances.mdはスウィフト4に含まれていないので、答え –