Fix empty page results update

This commit is contained in:
Christoph Hagen
2025-01-07 17:34:04 +01:00
parent 7b723add3e
commit b99c064d10
2 changed files with 11 additions and 0 deletions

View File

@ -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 {