Checks whether all elements of an object are unique.
Usage
check_unique(x, x_name = substitute(x), error = TRUE)
Examples
check_unique(2, error = FALSE)
#> Warning: `check_unique()` was deprecated in checkr 0.5.1.
#> ℹ Please use `chk::chk_unique()` instead.
check_unique(c(2,2), error = FALSE)
#> Warning: c(2, 2) must be unique
check_unique(1:2, error = FALSE)
check_unique(character(0), error = FALSE)
check_unique(NULL, error = FALSE)
check_unique(list(), error = FALSE)