Added two version of reverse and a swap function to the standard library.#396
Closed
eholk wants to merge 1 commit intorust-lang:masterfrom
Closed
Added two version of reverse and a swap function to the standard library.#396eholk wants to merge 1 commit intorust-lang:masterfrom
eholk wants to merge 1 commit intorust-lang:masterfrom
Conversation
Contributor
|
Integrated, thanks. |
ZuseZ4
pushed a commit
to EnzymeAD/rust
that referenced
this pull request
Mar 7, 2023
* Handle dupnoneed in forward mode * Fix allocs with more than one parameter (rust-lang#397) * Add test
GuillaumeGomez
pushed a commit
to GuillaumeGomez/rust
that referenced
this pull request
Feb 21, 2024
Rustify `clean_all.sh`
dpaoliello
pushed a commit
to dpaoliello/rust
that referenced
this pull request
Mar 22, 2024
Fix build error on big endian aarch64
tautschnig
added a commit
to carolynzech/rust
that referenced
this pull request
Jul 10, 2025
…t-lang#396) While the prior fixes made sure that submodule changes are picked up, the attempt to commit would fail when there were _no_ changes. See https://github.com/model-checking/verify-rust-std/actions/runs/15878565075/job/44772389751 for a failing run. Now we will only attempt to commit when there are changes. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
noscripter
pushed a commit
to noscripter/rust
that referenced
this pull request
Sep 8, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
One version does the reverse in place, using swap, and the other makes a reversed copy of the vector.