Files
rust/library
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
..
2025-03-07 19:11:13 +00:00
2025-02-13 14:32:50 -08:00
2025-03-29 08:10:15 +01:00
2025-03-10 21:23:31 +08:00
2025-03-06 11:11:55 -08:00
2025-03-11 09:46:34 -07:00
2025-03-24 00:29:21 +00:00