-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
Null padded representation? #32
Comments
I don't think that really works, because then you can't store strings with |
Yes, you can, so long as it isn't at the end. Its worth considering if handling strings that have nulls at the end but are not null terminated is worth giving up a whole byte. |
ShortStrings don't store a terminating null anyway. Once this is all working correctly (there are still the access violations, and any fallbacks that use |
cf #29
Rather than sorting the size at all we could store the string in null-padded form.
This would let us use up to the full width of the backing primative for content.
Then to determine the
ncodeunits
we would count backwards from the end how meany consecutive bytes were not0x00
and subtract that from the size of the backing primative
The text was updated successfully, but these errors were encountered: