Returns the type of the character vector
Details
A function that returns the type of character vector. Possible values are "normal vector", "stringfish vector",
"stringfish vector (materialized)", "stringfish slice store", "stringfish slice store (materialized)"
or "other alt-rep vector"
Examples
x <- sf_vector(10)
get_string_type(x) # returns "stringfish vector"
#> [1] "stringfish vector"
x <- character(10)
get_string_type(x) # returns "normal vector"
#> [1] "normal vector"