R/to-vec.R
str_to_vec.Rd
Go from a string to a vector whose \(i\)th element is the \(i\)th character in the string.
str_to_vec(string)
A character vector.
str_to_vec("abcdef") #> [1] "a" "b" "c" "d" "e" "f"