add doc alias replace_first for str::replacen#141370
Merged
bors merged 1 commit intorust-lang:masterfrom May 22, 2025
Merged
Conversation
Collaborator
Member
Author
|
@bors rollup |
Member
|
@bors r+ |
Collaborator
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
May 22, 2025
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#140431 (dont handle bool transmute) - rust-lang#140868 (rustdoc: Fix links with inline code in trait impl docs) - rust-lang#141323 (Add bors environment to CI) - rust-lang#141337 (bump stdarch) - rust-lang#141364 (rustdoc-json: Remove false docs and add test for inline attribute) - rust-lang#141370 (add doc alias `replace_first` for `str::replacen`) r? `@ghost` `@rustbot` modify labels: rollup
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this pull request
May 22, 2025
Rollup merge of rust-lang#141370 - WaffleLapkin:hiiii, r=jhpratt add doc alias `replace_first` for `str::replacen` `replace_first` is a sensible name for a function, analogous to actually existing `<[_]>::split_first`, for example. (I just saw someone try to search for it) I think it's reasonable to add such an alias for `replacen`, which replaces the first occurrence of passed a 1.
github-actions bot
pushed a commit
to model-checking/verify-rust-std
that referenced
this pull request
May 26, 2025
add doc alias `replace_first` for `str::replacen` `replace_first` is a sensible name for a function, analogous to actually existing `<[_]>::split_first`, for example. (I just saw someone try to search for it) I think it's reasonable to add such an alias for `replacen`, which replaces the first occurrence of passed a 1.
github-actions bot
pushed a commit
to model-checking/verify-rust-std
that referenced
this pull request
May 26, 2025
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#140431 (dont handle bool transmute) - rust-lang#140868 (rustdoc: Fix links with inline code in trait impl docs) - rust-lang#141323 (Add bors environment to CI) - rust-lang#141337 (bump stdarch) - rust-lang#141364 (rustdoc-json: Remove false docs and add test for inline attribute) - rust-lang#141370 (add doc alias `replace_first` for `str::replacen`) r? `@ghost` `@rustbot` modify labels: rollup
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.
replace_firstis a sensible name for a function, analogous to actually existing<[_]>::split_first, for example. (I just saw someone try to search for it)I think it's reasonable to add such an alias for
replacen, which replaces the first occurrence of passed a 1.