-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Implement some garbage collector #11778
Comments
related to #11399 |
The near-identical #2997 was accepted for P-low. |
Accepted for 1.0, assigning P-backcompat-libs (but we may revisit priority assignment later...) |
Nominating for removal from milestone. Does not seem possible. |
We should create a separate ticket for ensuring that our allocator design, whenever it is created, properly supports a reasonable form of garbage collection. Taking off the 1.0 milestone and removing the P-backcompat-lib; reassigning P-high. |
I'm pulling a massive triage effort to get us ready for 1.0. As part of this, I'm moving stuff that's wishlist-like to the RFCs repo, as that's where major new things should get discussed/prioritized. This issue has been moved to the RFCs repo: rust-lang/rfcs#679 |
…al_memcpy-when-array-length-is-equal-to-range, r=blyxyas fix: [manual_memcpy] reduce indexing suggestions when array length is equal to loop range fixes: rust-lang#11689 This PR improves `manual_memcpy` suggestions by reducing unnecessary indexing. For example, ```rust let src = [0, 1, 2, 3, 4]; let mut dest = [0; 4]; for i in 0..4 { dest[i] = src[i]; { ``` Clippy suggests `dest[..4].copy_from_slice(&src[..4]);`. I reduced this suggestion as `dest.copy_from_slice(&src[..4]);`. (Removed needless indexing.) changelog: [`manual_memcpy`]: Reduce indexing suggestions when array length is equal to loop range
I don't see any issue about just getting garbage collection working, which it increasingly looks like we want to have done for 1.0. Nominating.
The text was updated successfully, but these errors were encountered: