We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JsString
Currently JsString can only be u16 even if the contents can fit into the ASCII range this requires more memory to store strings.
u16
It would be better to have a flag in JsString, to know if the data content is an array of u8 or u16.
data
u8
The text was updated successfully, but these errors were encountered:
HalidOdat
Successfully merging a pull request may close this issue.
Currently
JsString
can only beu16
even if the contents can fit into the ASCII range this requires more memory to store strings.It would be better to have a flag in
JsString
, to know if thedata
content is an array ofu8
oru16
.The text was updated successfully, but these errors were encountered: