Last active
August 29, 2015 14:02
-
-
Save pcperini/3cd4f6430942d362c581 to your computer and use it in GitHub Desktop.
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
operator infix ⏰ {} | |
@infix func ⏰(time: NSTimeInterval, block: (() -> Void)) { | |
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, Int64(time * Double(NSEC_PER_SEC))), dispatch_get_current_queue(), block) | |
} | |
5.0 ⏰ { | |
println("HI!") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment