6 lines
137 B
Swift
6 lines
137 B
Swift
extension Hashable {
|
|
func isEqualHash(to other: Self) -> Bool {
|
|
return hashValue == other.hashValue && self == other
|
|
}
|
|
}
|