Skip to content

Instantly share code, notes, and snippets.

@k0nserv
Created August 19, 2014 20:08
Show Gist options
  • Save k0nserv/7a475a2812b48dbf4485 to your computer and use it in GitHub Desktop.
Save k0nserv/7a475a2812b48dbf4485 to your computer and use it in GitHub Desktop.
func unless(condition: BooleanType, action: () -> ()) {
if condition.boolValue == false {
action()
}
}
var opt: Int? = 10
unless(opt == nil) {
println("opt was non nil")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment