R/paste-operator.R

Defines functions `% %`

#' Paste operator
#'
#' An infix operator to combine strings.
#'
#' @param a String 1
#' @param b string 2
#'
#' @return a string
#' @export

`% %` <- function(a, b) {

    paste(a, b)

}
sachsmc/mcmisc2 documentation built on Jan. 18, 2020, 12:28 p.m.