Skip to content

Instantly share code, notes, and snippets.

@kazmasaurus
Last active August 29, 2015 14:10
Embed
What would you like to do?
Closure chaining.
func foo(completion: ((String) -> Void)?) {
completion?("Heyo!!")
}
foo { println($0) } // prints "Heyo"
foo(nil) // doesn't crash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment