Use custom has(into) and == functions for FeedListFolder.
This commit is contained in:
parent
24a6fae370
commit
37ace321e8
|
@ -23,4 +23,16 @@ final class FeedListFolder: Hashable, DisplayNameProvider {
|
|||
self.name = name
|
||||
self.feeds = feeds
|
||||
}
|
||||
|
||||
// MARK: - Hashable
|
||||
|
||||
public func hash(into hasher: inout Hasher) {
|
||||
hasher.combine(name)
|
||||
}
|
||||
|
||||
// MARK: - Equatable
|
||||
|
||||
static func ==(lhs: FeedListFolder, rhs: FeedListFolder) -> Bool {
|
||||
return lhs.name == rhs.name && lhs.feeds == rhs.feeds
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue