rlang icon indicating copy to clipboard operation
rlang copied to clipboard

Make `check_exclusive()` understand optional arguments

Open hadley opened this issue 10 months ago • 0 comments

e.g. make this just work:

f <- function(x = NULL, y = NULL) {
  rlang::check_exclusive(x, y)
}

hadley avatar Aug 09 '23 13:08 hadley