Skip to content

Instantly share code, notes, and snippets.

@dennisfarandy
Created July 13, 2015 07:43
Show Gist options
  • Save dennisfarandy/f682a541021ad770f53b to your computer and use it in GitHub Desktop.
Save dennisfarandy/f682a541021ad770f53b to your computer and use it in GitHub Desktop.
swift closure
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