Skip to content

Instantly share code, notes, and snippets.

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