This function provides an infix operator for the
paste0 function to concatenate strings. The operator
will concatenate a vector of one or more values. The functionality
is identical to paste0(), but more convenient to use in some
situations.
x %p% yA value for the left side of the paste infix operator.
A value for the right side of the paste infix operator.
The concatenated or pasted value. No spaces will be inserted in between the values to paste. If a vector of values is supplied, a vector of pasted values will be returned.