R/pastep.R

Defines functions pastep

Documented in pastep

#' Concatenate and flattens strings with " + "
#' @param ... Character strings to concatenate with " + "
#' @return Returns character vector with " + " in between each
#' @export
pastep <- function(...) {
  paste0(..., collapse=" + ")
}
pbaylis/baylisR documentation built on Nov. 8, 2019, 6:20 p.m.