-
-
Notifications
You must be signed in to change notification settings - Fork 413
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
Add an "iter()" method to Js*Array for convenience #3986
Conversation
It might be optimizable, and in either case it should be but this at least let people use an easy API and enjoy future improvements.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3986 +/- ##
==========================================
+ Coverage 47.24% 51.79% +4.54%
==========================================
Files 476 468 -8
Lines 46892 45223 -1669
==========================================
+ Hits 22154 23421 +1267
+ Misses 24738 21802 -2936 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice addition! :)
* Allow dead code for code that is newly detected as unused * Fix compile errors with nightly rust * Add missing SAFETY section * Increase safety of `FutexWaiters` * Add an "iter()" method to Js*Array for convenience It might be optimizable, and in either case it should be but this at least let people use an easy API and enjoy future improvements. * Fix clippies --------- Co-authored-by: Theo Paris <theo@tinted.dev> Co-authored-by: José Julián Espina <julian.espina@canonical.com>
It might be optimizable, and in either case it should be but this at
least let people use an easy API and enjoy future improvements.