Created
July 4, 2017 08:10
-
-
Save tranhieutt/0b2e57543a35a27736e256aac7c50681 to your computer and use it in GitHub Desktop.
[Swift] - Filter
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
let digits = [1,4,10,13] | |
let event = digits.filter { number -> Bool in | |
number % 2 == 0 | |
} | |
//short way | |
let otherEvent = digits.filter {$0%2==0} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment