create_vector.Rd
Function to extract unique elements of a vector and output example code to the console.
A vector of elements.
A character vector with 1 the string to add before each element and 2 the string to add after each element.
A character with 1 the string to add before all elements and 2 the string to add after all elements.
Example code in the console.
create_vector( LETTERS[1:3] )
#> c(
#> "A",
#> "B",
#> "C"
#> )