R/implode.R

Defines functions implode

Documented in implode

#' Implode a list of strings
#'
#' Form a single string from a vector of strings
#' @export

implode <- function(..., sep='') {
  paste0(..., collapse=sep)
}
polymathematic/Longform documentation built on Jan. 16, 2020, 10:12 p.m.