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
Consider the following array update:
a[i] = v;
It gets extracted to:
let (_, index_mut_back) ← Array.index_mut_usize U32 16#usize a i let a1 ← index_mut_back x
It would be good to implement a micro-pass which updates this pattern to something like this:
let a1 ← Array.update U32 16#usize a i x
The text was updated successfully, but these errors were encountered:
sonmarcho
No branches or pull requests
Consider the following array update:
It gets extracted to:
It would be good to implement a micro-pass which updates this pattern to something like this:
The text was updated successfully, but these errors were encountered: