Skip to content

Instantly share code, notes, and snippets.

@Czajnikowski
Created June 3, 2017 10:56
Show Gist options
  • Save Czajnikowski/cc641a6f9f0f1383f0984a1df28199e4 to your computer and use it in GitHub Desktop.
Save Czajnikowski/cc641a6f9f0f1383f0984a1df28199e4 to your computer and use it in GitHub Desktop.
let contacts: [Contact] = …
let results = contacts.filter { contact in
contact.addresses.filter { address in
address.city == searchQuery
}.count > 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment