Skip to contents

Concatenate Vectors

Usage

sf_c(...)

Arguments

...

Any number of vectors, coerced to <character> vector, if necessary

Value

concatenated <character> vector

Examples

sf_c(LETTERS, "A")
#>  [1] "A" "B" "C" "D" "E" "F" "G" "H" "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S"
#> [20] "T" "U" "V" "W" "X" "Y" "Z" "A"