Stabilize int_format_into feature#152544
Merged
rust-bors[bot] merged 1 commit intoJun 15, 2026
Merged
Conversation
Collaborator
|
Some changes occurred in integer formatting cc @tgross35 |
This comment has been minimized.
This comment has been minimized.
84973ef to
03a0f20
Compare
This comment has been minimized.
This comment has been minimized.
03a0f20 to
897eb89
Compare
This comment has been minimized.
This comment has been minimized.
897eb89 to
2ec6387
Compare
This comment has been minimized.
This comment has been minimized.
4 tasks
Amanieu
reviewed
Mar 28, 2026
2ec6387 to
74ce864
Compare
This comment has been minimized.
This comment has been minimized.
74ce864 to
28edb57
Compare
This comment has been minimized.
This comment has been minimized.
28edb57 to
f93c2e2
Compare
This comment has been minimized.
This comment has been minimized.
f93c2e2 to
ec80536
Compare
GuillaumeGomez
commented
Mar 28, 2026
| /// Returns the length of the internal buffer. | ||
| #[unstable(feature = "int_format_into", issue = "138215")] | ||
| pub const fn capacity(&self) -> usize { | ||
| pub(crate) const fn capacity(&self) -> usize { |
Member
Author
There was a problem hiding this comment.
Because the size of NumBuffer is always the same, we are forced to use this method until we can actually use the NumBufferTrat::BUF_SIZE when declaring NumBuffer.
This comment has been minimized.
This comment has been minimized.
ec80536 to
789f4f2
Compare
Member
Author
|
Finally fixed CI. ^^' |
This comment has been minimized.
This comment has been minimized.
789f4f2 to
41d83dc
Compare
This comment has been minimized.
This comment has been minimized.
Member
Author
This comment has been minimized.
This comment has been minimized.
41d83dc to
4f14499
Compare
Member
Author
|
Fixed CI. :) |
This comment has been minimized.
This comment has been minimized.
4f14499 to
c7f193f
Compare
Collaborator
|
This PR was rebased onto a different main commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
Member
Author
|
Fixed merge conflict. |
This comment has been minimized.
This comment has been minimized.
c7f193f to
1b5c239
Compare
Member
Author
|
And fixed the doctest. |
Member
|
@bors r+ |
Contributor
|
📋 This PR cannot be approved because it currently has the following label: |
Member
|
@bors r+ |
Contributor
JonathanBrouwer
added a commit
to JonathanBrouwer/rust
that referenced
this pull request
Jun 15, 2026
…t_into, r=Amanieu Stabilize `int_format_into` feature Fixes rust-lang#138215. r? @Amanieu
GuillaumeGomez
added a commit
to GuillaumeGomez/rust
that referenced
this pull request
Jun 15, 2026
…t_into, r=Amanieu Stabilize `int_format_into` feature Fixes rust-lang#138215. r? @Amanieu
rust-bors Bot
pushed a commit
that referenced
this pull request
Jun 15, 2026
Rollup of 13 pull requests Successful merges: - #152544 (Stabilize `int_format_into` feature) - #157507 (fixed: differentiation between uninitialized and possibly uninitialized) - #155750 (Document that `ManuallyDrop`'s `Box` interaction has been fixed) - #157075 (lower edition requirements for some async-closure test helpers) - #157627 (remove LLVM `va_end` calls) - #157660 (normalize instead of evaluating type const patterns) - #157692 (Don't emit `unused_parens` suggestion for proc-macro-synthesized parens around bounds) - #157908 (fix binding const argument to assoc type suggestion) - #157915 (scalable vecs size incl. num vecs + no sret for scalable vecs) - #157916 (Avoid ICE on invalid crate-level cfg_attr predicates) - #157919 (mention in the `extern "tail"` error that it's supported on x86) - #157920 (mailmap: add mu001999) - #157924 (Update books)
rust-timer
added a commit
that referenced
this pull request
Jun 16, 2026
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.
View all comments
Fixes #138215.
r? @Amanieu