Fix empty page results update
This commit is contained in:
@ -35,6 +35,12 @@ extension Collection where Element: Collection, Element.Element: Hashable {
|
||||
}
|
||||
}
|
||||
|
||||
extension Collection where Element: Hashable {
|
||||
|
||||
func asSet() -> Set<Element> {
|
||||
Set(self)
|
||||
}
|
||||
}
|
||||
|
||||
extension RangeReplaceableCollection where Element: Comparable {
|
||||
|
||||
|
Reference in New Issue
Block a user