R/string_helpers.R

Defines functions `%&%`

#' @title Pipe Function To Paste Two Characters
#' @param x character
#' @param y character
#' @return paste0(x,y)
`%&%` <- function(x, y){
  base::paste0(x, y)
}
dipterix/rutabaga documentation built on June 25, 2022, 2:38 p.m.