R/paste_pipe.R

#' Concat strings
#' 
#' Concatenate two strings into one similar to paste0
#' 
#' @param x string 1
#' @param y string 2
#' 
#' @export

`%+%` <- function(x, y){
  paste0(x, y)
}
junkka/r-custom documentation built on May 20, 2019, 4:24 a.m.