R/Cs.R

Defines functions cs

Documented in cs

#' Vector of character strings (cs) from list of unquoted names
#'
#' Returns a vector of character strings (cs) from list of unquoted names.
#' Copied from the Hmisc package.
#' @param ... Unquoted names.
#' @export
#' @examples
#' cs(a, cat, dog)

cs <- function(...) {
    return(as.character(sys.call()[-1]))
}
jhelvy/jhelvyr documentation built on July 14, 2024, 9:58 p.m.