R/Helper_functions.R
get_all_combs.Rd
pastes together all combinations of input vector
get_all_combs(vec)
vector of strings
A vector of strings is returned.
get_all_combs(letters[1:3]) #> [1] "b_a" "c_a" "a_b" "c_b" "a_c" "b_c"