R/is.unique.R

#' are the elements in x all unique?
#' 
#' @inheritParams base::unique
#' @author Mark Cowley, 6 April 2006
#' @export
is.unique <- function(x) {
	return( length(x) == length(unique(x)) )
}
drmjc/mjcbase documentation built on May 15, 2019, 2:27 p.m.