Last active
March 12, 2017 01:12
-
-
Save efremidze/515a1d3454e8d606ed7821ceb1b28591 to your computer and use it in GitHub Desktop.
init
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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