R/stringFunctions.R

Defines functions `%&%`

# String functions

`%&%` <- function(string1, string2){
	# Binary operator for string concatenation
	paste(string1, string2, sep='')
}

Try the CALIBERcodelists package in your browser

Any scripts or data that you put into this service are public.

CALIBERcodelists documentation built on Feb. 28, 2020, 3:01 a.m.