Skip to content

Instantly share code, notes, and snippets.

@efremidze
Last active March 12, 2017 01:12
Show Gist options
  • Save efremidze/515a1d3454e8d606ed7821ceb1b28591 to your computer and use it in GitHub Desktop.
Save efremidze/515a1d3454e8d606ed7821ceb1b28591 to your computer and use it in GitHub Desktop.
init
@warn_unused_result
func Init<T>(value: T, @noescape block: (object: T) -> Void) -> T {
block(object: value)
return value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment