-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Correct the const stabilization of last_chunk
for slices
#124836
Conversation
`<[T]>::last_chunk` should have become const stable as part of <rust-lang#117561>. Update the const stability gate to reflect this.
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (cc8d9b6): comparison URL. Overall result: ❌✅ regressions and improvements - no action needed@rustbot label: -perf-regression Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 675.464s -> 676.002s (0.08%) |
Except now the doc says it was stabilized const in 1.77, but using it as const with a version < 1.80 fails with
|
Opened #128619 |
<[T]>::last_chunk
should have become const stable as part of #117561. Update the const stability gate to reflect this.