R/Str_C_Operator.R

#'Rapid string parsing
#'
#'Method for quicker pasting of Strings.
#'
#'@rdname stringpaste
#'@usage a \%+\% b
#'@title Operator for concatenation.
#'@param a The first String
#'@param b The second String
#'
#'@return character formatted concatenation of both input strings.
#'
#'@export
"%+%" <- function(a, b) stringr::str_c(a, b, sep = "")
Paleantology/RevR documentation built on March 22, 2022, 2:27 a.m.