rust/library/core/src/fmt
Mara Bos cc5ee70b1a Simplify expansion for format_args!().
Instead of calling new(), we can just use a struct expression directly.

Before:

        Placeholder::new(…, …, …, …)

After:

        Placeholder {
                position: …,
                flags: …,
                width: …,
                precision: …,
        }
2025-03-30 10:42:00 +02:00
..
builders.rs Mark std::fmt::from_fn as #[must_use] 2025-02-03 20:17:27 +00:00
float.rs Reduce FormattingOptions to 64 bits. 2025-03-12 16:32:00 +01:00
fmt_trait_method_doc.md Document proper usage of fmt::Error and fmt()'s Result. 2024-05-09 17:58:38 -07:00
mod.rs Auto merge of #136974 - m-ou-se:fmt-options-64-bit, r=scottmcm 2025-03-22 10:56:14 +00:00
nofloat.rs Refactor floating macro and nofloat panic message 2024-10-15 22:27:06 +09:00
num.rs Auto merge of #136409 - TDecking:mul_hi, r=Mark-Simulacrum 2025-02-06 03:43:58 +00:00
rt.rs Simplify expansion for format_args!(). 2025-03-30 10:42:00 +02:00