Skip to content

Instantly share code, notes, and snippets.

@rizumita
Created January 30, 2018 19:34
Show Gist options
  • Save rizumita/07cada389aa70b32e615c82469d722b2 to your computer and use it in GitHub Desktop.
Save rizumita/07cada389aa70b32e615c82469d722b2 to your computer and use it in GitHub Desktop.
test("Optional Binding") {
for _ in 0...repeatCount {
let unrapped: String
if let tmp = s {
unrapped = tmp
} else {
unrapped = "default"
}
}
}
test("??") {
for _ in 0...repeatCount {
let unrapped = s ?? "default"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment