I find that DocStr
uses SimpleVector
to store the text, I would like to convert it back to a String
, is it possible? How?
Just found out myself… simply indexing can do.
julia> x = Core.svec("abc")
svec("abc")
julia> typeof(x)
SimpleVector
julia> y = x[1]
"abc"
julia> typeof(y)
String