```julia julia> using InlineStrings julia> String3("0") "0" julia> parse(Bool, String3("0")) ERROR: InexactError: Bool(10) julia> parse(Bool, String(String3("0"))) false ``` is this expected to work? It was confusing hitting this when working with a DataFrame