R/is_unique.R

Defines functions is.unique

Documented in is.unique

#' Utility function to check whether an object is unique
#'
#' @param x the object
#' 
#' @export
is.unique <- function(x = NULL) {
	!(any(duplicated(x)))
}
lbraglia/lbmisc documentation built on April 29, 2024, 11:27 a.m.