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
At the moment there is no way to choose between case mode when using allocation free encode_to_slice. Current behavior defaults to lowercase.
encode_to_slice
My proposal is to: change encode_to_slice -> encode_to_slice_lower add encode_to_slice_upper`
encode_to_slice_lower add
let (high, low) = byte2hex(*byte, HEX_CHARS_LOWER); HEX_CHARS_LOWER could be easily parametrized
let (high, low) = byte2hex(*byte, HEX_CHARS_LOWER);
HEX_CHARS_LOWER
The text was updated successfully, but these errors were encountered:
Add encode_to_slice_upper to improve performance of encode_upper
54e649d
This also fixes KokaKiwi#45.
8b9307b
KokaKiwi
Successfully merging a pull request may close this issue.
At the moment there is no way to choose between case mode when using allocation free
encode_to_slice
. Current behavior defaults to lowercase.My proposal is to:
change
encode_to_slice
->encode_to_slice_lower add
encode_to_slice_upper`let (high, low) = byte2hex(*byte, HEX_CHARS_LOWER);
HEX_CHARS_LOWER
could be easily parametrizedThe text was updated successfully, but these errors were encountered: