Skip to content

Instantly share code, notes, and snippets.

@pcperini
Last active August 29, 2015 14:02
Show Gist options
  • Save pcperini/3cd4f6430942d362c581 to your computer and use it in GitHub Desktop.
Save pcperini/3cd4f6430942d362c581 to your computer and use it in GitHub Desktop.
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