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
I've got an esoteric format which some bit wrangling.
With help from #435 and #302 (comment) I've got it working here, but I find this ⬇️ a bit 🤢
instances: id: value: id_0 + (id_1 << 6) + (id_2.to_i << 12) value: value: val_0 + (val_1 << 5)
I suppose what I'm really doing is bit level concatenation. Is there a better way without requiring a new method?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've got an esoteric format which some bit wrangling.
With help from #435 and #302 (comment) I've got it working here, but I find this ⬇️ a bit 🤢
I suppose what I'm really doing is bit level concatenation.
Is there a better way without requiring a new method?
The text was updated successfully, but these errors were encountered: