R/strcat.R

#' concatenate a bunch of strings
#' 
#' @param \dots character vectors to be concatenated
#' @author Mark Cowley, 11 April 2006
#' @export
#' @examples
#' strcat(letters)
#' # [1] "abcdefghijklmnopqrstuvwxyz"
strcat <- function(...) {
	paste0(unlist( list(...) ))
}
drmjc/mjcbase documentation built on May 15, 2019, 2:27 p.m.