R/concatAll.R
concatAll.Rd
Concact multiple values
concatAll(..., sep = "; ")
the list of values to be concacted
the separated for concating
a = 5 b = 10 c = "done" concatAll(a,b,c) #> [1] "5; 10; done"