Last active
September 24, 2021 18:46
-
-
Save dmytro-anokhin/0c1ec41d90d33bba27b09b9659eaa33f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension CitiesCache { | |
func lookup(prefix: String) -> [String] { | |
cities.filter { $0.hasCaseAndDiacriticInsensitivePrefix(prefix) } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment