R/concatAll.R

Defines functions concatAll

Documented in concatAll

#' Concact multiple values
#'
#'
#' @return NULL
#'
#' @param ... the list of values to be concacted
#' @param sep the separated for concating
#'
#' @examples
#'
#' a = 5
#' b = 10
#' c = "done"
#' concatAll(a,b,c)
#'
#'
#' @export


concatAll = function(...,sep="; "){
  return(paste(c(...),collapse = sep))
}

Try the r2dictionary package in your browser

Any scripts or data that you put into this service are public.

r2dictionary documentation built on July 26, 2023, 5:34 p.m.