-
-
Save mthouser/677f89b5750b96d6fca5 to your computer and use it in GitHub Desktop.
Swift Presentation: Closure Example
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
var names = ["Neil", "Tim", "Kiran"] | |
var reversed : [ String ] | |
reversed = sorted(names, { (s1: String, s2: String) -> Bool in | |
return s1 > s2 | |
} ) | |
reversed = sorted(names, { s1, s2 in s1 > s2 } ) | |
reversed = sorted(names, { $0 > $1 } ) | |
reversed = sorted(names, >) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment