Skip to content

Instantly share code, notes, and snippets.

@vrutberg
Last active February 21, 2018 21:05
Show Gist options
  • Save vrutberg/b8593a8f3ea01159326298be5996f824 to your computer and use it in GitHub Desktop.
Save vrutberg/b8593a8f3ea01159326298be5996f824 to your computer and use it in GitHub Desktop.
struct Pet {
let name: String
}
struct Person {
let name: String
let pets: [Pet]
}
// a conditional unwrap - people is an array of Person objects
let petName = people.first?.pets.first?.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment