Skip to content

Instantly share code, notes, and snippets.

@hadley
Created October 11, 2016 20:23
Show Gist options
  • Save hadley/f4b79cc7e40007157dd33e75400ddd90 to your computer and use it in GitHub Desktop.
Save hadley/f4b79cc7e40007157dd33e75400ddd90 to your computer and use it in GitHub Desktop.
only_if <- function(if_false, cond, if_true) {
if (cond) {
if_true
} else {
if_false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment