Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b378b05

Browse files
committedMar 18, 2025
Added functionality for int_format_into
1 parent c794c2c commit b378b05

File tree

3 files changed

+364
-68
lines changed

3 files changed

+364
-68
lines changed
 

‎library/core/src/fmt/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ mod float;
1515
#[cfg(no_fp_fmt_parse)]
1616
mod nofloat;
1717
mod num;
18+
mod num_buffer;
1819
mod rt;
1920

2021
#[stable(feature = "fmt_flags_align", since = "1.28.0")]
@@ -46,6 +47,9 @@ impl From<rt::Alignment> for Option<Alignment> {
4647
}
4748
}
4849

50+
#[unstable(feature = "int_format_into", issue = "138215")]
51+
pub use num_buffer::NumBuffer;
52+
4953
#[stable(feature = "debug_builders", since = "1.2.0")]
5054
pub use self::builders::{DebugList, DebugMap, DebugSet, DebugStruct, DebugTuple};
5155
#[unstable(feature = "debug_closure_helpers", issue = "117729")]
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Failed to load comments.