Skip to content

Instantly share code, notes, and snippets.

@amlcurran
Created July 31, 2016 13:36
Show Gist options
  • Save amlcurran/94d79c8940a403770e393b5bf76e6160 to your computer and use it in GitHub Desktop.
Save amlcurran/94d79c8940a403770e393b5bf76e6160 to your computer and use it in GitHub Desktop.
swift-optional-chaining
let optionalString: String? = nil
let count = optionalString?.utf8.count // count is an optional Int
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment