Closed nickrobinson251 closed 2 years ago
String(s)
before:
julia> s = String31("abcd_efgh") "abcd_efgh" julia> @time Vector{UInt8}(s); 0.000012 seconds (2 allocations: 96 bytes)
now:
julia> @time Vector{UInt8}(s); 0.000011 seconds (1 allocation: 64 bytes)
String(s)
before:
now: