paste0 in the way of pipe operator

a %+% b

Arguments

x

A string (or coerced to)

y

A string (or coerced to)

Value

The concatenation of x and y strings

Details

This functions is a pipe version of paste0

Examples

'Hello ' %+% 'world'
#> [1] "Hello world"
'Your pastas taste like ' %+% '%>%'
#> [1] "Your pastas taste like %>%"
'coco' %+% 'bolo'
#> [1] "cocobolo"