static func == (lhs: Employee, rhs: Employee) -> Bool { return lhs.salary == rhs.salary }
struct Employee: Hashable { ... }