Files
DiffableDataSources/Sources/Internal/HashableExtension.swift
T
2019-06-24 12:03:35 +09:00

6 lines
137 B
Swift

extension Hashable {
func isEqualHash(to other: Self) -> Bool {
return hashValue == other.hashValue && self == other
}
}