i want to check equality between objects but i get an error. Error is within the code.
class Test {
var key: String
init(nameParam: String) {
self.key = nameParam
}
func ==(other: Test) -> Bool {
return other.key == self.key
}
}
var t1 = Test(nameParam: "Test")
var t2 = Test(nameParam: "Test1")
if(t1 == t2) { // Error: 'Test' is not convertible to 'MirrorDisposition'
println("...")
}
Operators must be implemented in the global scope, not inside the class. So you should implement your equality operator outside of the class:
Suggested reading: Operator Functions