R/ac.R

Defines functions ac

Documented in ac

#' @title Abbreviation for \code{as.character}
#'
#' @param x object to be coerced or tested.
#' @param ... Further arguments passed to \code{as.character}.
#'
#' @export
#'
#' @examples
#' as.character(TRUE)
#' ac(TRUE)
ac <- function(x, ...){
  return(as.character(x, ...))
}
LuisLauM/ruisu documentation built on March 26, 2024, 8:23 a.m.