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
public static int TestSum(SharedArrayBuffer sharedArrayBuffer) { Int32Array array = new Int32Array(sharedArrayBuffer); Span<int> nativeArray = array; // error int sum = 0; for (int i = 0; i < nativeArray.Length; i++) { sum += nativeArray[i]; } return sum; }
Fails with "Object '...' is not a typed array" in js_typed_array_to_array.
Originally reported here: #46016
This can reliably be reproduced and changes will be coming soon.
The text was updated successfully, but these errors were encountered:
Tagging subscribers to 'arch-wasm': @lewing See info in area-owners.md if you want to be subscribed.
arch-wasm, area-System.Runtime.InteropServices.JavaScript
arch-wasm
area-System.Runtime.InteropServices.JavaScript
Sorry, something went wrong.
kjpou1
Successfully merging a pull request may close this issue.
Fails with "Object '...' is not a typed array" in js_typed_array_to_array.
Originally reported here: #46016
This can reliably be reproduced and changes will be coming soon.
The text was updated successfully, but these errors were encountered: