View source: R/check-functions.R
check_no_overlap_colnums | R Documentation |
Given a named list of colnum vectors, like those
produced by tidyselect::eval_select()
,
throw an error if there is an overlap.
check_no_overlap_colnums(x)
x |
A named list of integer vectors. |
TRUE
, invisibly
tidyselect::eval_select()
x <- list(arg1 = c(age = 1L),
arg2 = c(gender = 4L, region = 5L))
check_no_overlap_colnums(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.