Created
July 13, 2015 07:43
-
-
Save dennisfarandy/f682a541021ad770f53b to your computer and use it in GitHub Desktop.
swift closure
This file contains 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
AnonymousFunction( { (number: Int) -> Bool in number < 0 } ) | |
AnonymousFunction { (number: Int) -> Bool in number < 0 } | |
AnonymousFunction { (number) -> Bool in number < 0 } | |
AnonymousFunction { number -> Bool in number < 0 } | |
AnonymousFunction { number in number < 0 } | |
AnonymousFunction { $0 < 0 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment