Skip to content

Instantly share code, notes, and snippets.

@emadhegab
Created March 16, 2016 12:56
Show Gist options
  • Save emadhegab/102dab70303ba7f6bab3 to your computer and use it in GitHub Desktop.
Save emadhegab/102dab70303ba7f6bab3 to your computer and use it in GitHub Desktop.
extension to make Ruby Like times for swift
extension Int {
func times(b: (Int) -> ()) {
for i in 0..<self {
b(i)
}
}
}
3.times { print($0) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment