]> git.lizzy.rs Git - rust.git/blob - library/alloc/src/fmt.rs
Auto merge of #77502 - varkor:const-generics-suggest-enclosing-braces, r=petrochenkov
[rust.git] / library / alloc / src / fmt.rs
1 //! Utilities for formatting and printing `String`s.
2 //!
3 //! This module contains the runtime support for the [`format!`] syntax extension.
4 //! This macro is implemented in the compiler to emit calls to this module in
5 //! order to format arguments at runtime into strings.
6 //!
7 //! # Usage
8 //!
9 //! The [`format!`] macro is intended to be familiar to those coming from C's
10 //! `printf`/`fprintf` functions or Python's `str.format` function.
11 //!
12 //! Some examples of the [`format!`] extension are:
13 //!
14 //! ```
15 //! format!("Hello");                 // => "Hello"
16 //! format!("Hello, {}!", "world");   // => "Hello, world!"
17 //! format!("The number is {}", 1);   // => "The number is 1"
18 //! format!("{:?}", (3, 4));          // => "(3, 4)"
19 //! format!("{value}", value=4);      // => "4"
20 //! format!("{} {}", 1, 2);           // => "1 2"
21 //! format!("{:04}", 42);             // => "0042" with leading zeros
22 //! ```
23 //!
24 //! From these, you can see that the first argument is a format string. It is
25 //! required by the compiler for this to be a string literal; it cannot be a
26 //! variable passed in (in order to perform validity checking). The compiler
27 //! will then parse the format string and determine if the list of arguments
28 //! provided is suitable to pass to this format string.
29 //!
30 //! To convert a single value to a string, use the [`to_string`] method. This
31 //! will use the [`Display`] formatting trait.
32 //!
33 //! ## Positional parameters
34 //!
35 //! Each formatting argument is allowed to specify which value argument it's
36 //! referencing, and if omitted it is assumed to be "the next argument". For
37 //! example, the format string `{} {} {}` would take three parameters, and they
38 //! would be formatted in the same order as they're given. The format string
39 //! `{2} {1} {0}`, however, would format arguments in reverse order.
40 //!
41 //! Things can get a little tricky once you start intermingling the two types of
42 //! positional specifiers. The "next argument" specifier can be thought of as an
43 //! iterator over the argument. Each time a "next argument" specifier is seen,
44 //! the iterator advances. This leads to behavior like this:
45 //!
46 //! ```
47 //! format!("{1} {} {0} {}", 1, 2); // => "2 1 1 2"
48 //! ```
49 //!
50 //! The internal iterator over the argument has not been advanced by the time
51 //! the first `{}` is seen, so it prints the first argument. Then upon reaching
52 //! the second `{}`, the iterator has advanced forward to the second argument.
53 //! Essentially, parameters that explicitly name their argument do not affect
54 //! parameters that do not name an argument in terms of positional specifiers.
55 //!
56 //! A format string is required to use all of its arguments, otherwise it is a
57 //! compile-time error. You may refer to the same argument more than once in the
58 //! format string.
59 //!
60 //! ## Named parameters
61 //!
62 //! Rust itself does not have a Python-like equivalent of named parameters to a
63 //! function, but the [`format!`] macro is a syntax extension that allows it to
64 //! leverage named parameters. Named parameters are listed at the end of the
65 //! argument list and have the syntax:
66 //!
67 //! ```text
68 //! identifier '=' expression
69 //! ```
70 //!
71 //! For example, the following [`format!`] expressions all use named argument:
72 //!
73 //! ```
74 //! format!("{argument}", argument = "test");   // => "test"
75 //! format!("{name} {}", 1, name = 2);          // => "2 1"
76 //! format!("{a} {c} {b}", a="a", b='b', c=3);  // => "a 3 b"
77 //! ```
78 //!
79 //! It is not valid to put positional parameters (those without names) after
80 //! arguments that have names. Like with positional parameters, it is not
81 //! valid to provide named parameters that are unused by the format string.
82 //!
83 //! # Formatting Parameters
84 //!
85 //! Each argument being formatted can be transformed by a number of formatting
86 //! parameters (corresponding to `format_spec` in [the syntax](#syntax)). These
87 //! parameters affect the string representation of what's being formatted.
88 //!
89 //! ## Width
90 //!
91 //! ```
92 //! // All of these print "Hello x    !"
93 //! println!("Hello {:5}!", "x");
94 //! println!("Hello {:1$}!", "x", 5);
95 //! println!("Hello {1:0$}!", 5, "x");
96 //! println!("Hello {:width$}!", "x", width = 5);
97 //! ```
98 //!
99 //! This is a parameter for the "minimum width" that the format should take up.
100 //! If the value's string does not fill up this many characters, then the
101 //! padding specified by fill/alignment will be used to take up the required
102 //! space (see below).
103 //!
104 //! The value for the width can also be provided as a [`usize`] in the list of
105 //! parameters by adding a postfix `$`, indicating that the second argument is
106 //! a [`usize`] specifying the width.
107 //!
108 //! Referring to an argument with the dollar syntax does not affect the "next
109 //! argument" counter, so it's usually a good idea to refer to arguments by
110 //! position, or use named arguments.
111 //!
112 //! ## Fill/Alignment
113 //!
114 //! ```
115 //! assert_eq!(format!("Hello {:<5}!", "x"),  "Hello x    !");
116 //! assert_eq!(format!("Hello {:-<5}!", "x"), "Hello x----!");
117 //! assert_eq!(format!("Hello {:^5}!", "x"),  "Hello   x  !");
118 //! assert_eq!(format!("Hello {:>5}!", "x"),  "Hello     x!");
119 //! ```
120 //!
121 //! The optional fill character and alignment is provided normally in conjunction with the
122 //! [`width`](#width) parameter. It must be defined before `width`, right after the `:`.
123 //! This indicates that if the value being formatted is smaller than
124 //! `width` some extra characters will be printed around it.
125 //! Filling comes in the following variants for different alignments:
126 //!
127 //! * `[fill]<` - the argument is left-aligned in `width` columns
128 //! * `[fill]^` - the argument is center-aligned in `width` columns
129 //! * `[fill]>` - the argument is right-aligned in `width` columns
130 //!
131 //! The default [fill/alignment](#fillalignment) for non-numerics is a space and
132 //! left-aligned. The
133 //! default for numeric formatters is also a space character but with right-alignment. If
134 //! the `0` flag (see below) is specified for numerics, then the implicit fill character is
135 //! `0`.
136 //!
137 //! Note that alignment may not be implemented by some types. In particular, it
138 //! is not generally implemented for the `Debug` trait.  A good way to ensure
139 //! padding is applied is to format your input, then pad this resulting string
140 //! to obtain your output:
141 //!
142 //! ```
143 //! println!("Hello {:^15}!", format!("{:?}", Some("hi"))); // => "Hello   Some("hi")   !"
144 //! ```
145 //!
146 //! ## Sign/`#`/`0`
147 //!
148 //! ```
149 //! assert_eq!(format!("Hello {:+}!", 5), "Hello +5!");
150 //! assert_eq!(format!("{:#x}!", 27), "0x1b!");
151 //! assert_eq!(format!("Hello {:05}!", 5),  "Hello 00005!");
152 //! assert_eq!(format!("Hello {:05}!", -5), "Hello -0005!");
153 //! assert_eq!(format!("{:#010x}!", 27), "0x0000001b!");
154 //! ```
155 //!
156 //! These are all flags altering the behavior of the formatter.
157 //!
158 //! * `+` - This is intended for numeric types and indicates that the sign
159 //!         should always be printed. Positive signs are never printed by
160 //!         default, and the negative sign is only printed by default for the
161 //!         `Signed` trait. This flag indicates that the correct sign (`+` or `-`)
162 //!         should always be printed.
163 //! * `-` - Currently not used
164 //! * `#` - This flag indicates that the "alternate" form of printing should
165 //!         be used. The alternate forms are:
166 //!     * `#?` - pretty-print the [`Debug`] formatting
167 //!     * `#x` - precedes the argument with a `0x`
168 //!     * `#X` - precedes the argument with a `0x`
169 //!     * `#b` - precedes the argument with a `0b`
170 //!     * `#o` - precedes the argument with a `0o`
171 //! * `0` - This is used to indicate for integer formats that the padding to `width` should
172 //!         both be done with a `0` character as well as be sign-aware. A format
173 //!         like `{:08}` would yield `00000001` for the integer `1`, while the
174 //!         same format would yield `-0000001` for the integer `-1`. Notice that
175 //!         the negative version has one fewer zero than the positive version.
176 //!         Note that padding zeros are always placed after the sign (if any)
177 //!         and before the digits. When used together with the `#` flag, a similar
178 //!         rule applies: padding zeros are inserted after the prefix but before
179 //!         the digits. The prefix is included in the total width.
180 //!
181 //! ## Precision
182 //!
183 //! For non-numeric types, this can be considered a "maximum width". If the resulting string is
184 //! longer than this width, then it is truncated down to this many characters and that truncated
185 //! value is emitted with proper `fill`, `alignment` and `width` if those parameters are set.
186 //!
187 //! For integral types, this is ignored.
188 //!
189 //! For floating-point types, this indicates how many digits after the decimal point should be
190 //! printed.
191 //!
192 //! There are three possible ways to specify the desired `precision`:
193 //!
194 //! 1. An integer `.N`:
195 //!
196 //!    the integer `N` itself is the precision.
197 //!
198 //! 2. An integer or name followed by dollar sign `.N$`:
199 //!
200 //!    use format *argument* `N` (which must be a `usize`) as the precision.
201 //!
202 //! 3. An asterisk `.*`:
203 //!
204 //!    `.*` means that this `{...}` is associated with *two* format inputs rather than one: the
205 //!    first input holds the `usize` precision, and the second holds the value to print. Note that
206 //!    in this case, if one uses the format string `{<arg>:<spec>.*}`, then the `<arg>` part refers
207 //!    to the *value* to print, and the `precision` must come in the input preceding `<arg>`.
208 //!
209 //! For example, the following calls all print the same thing `Hello x is 0.01000`:
210 //!
211 //! ```
212 //! // Hello {arg 0 ("x")} is {arg 1 (0.01) with precision specified inline (5)}
213 //! println!("Hello {0} is {1:.5}", "x", 0.01);
214 //!
215 //! // Hello {arg 1 ("x")} is {arg 2 (0.01) with precision specified in arg 0 (5)}
216 //! println!("Hello {1} is {2:.0$}", 5, "x", 0.01);
217 //!
218 //! // Hello {arg 0 ("x")} is {arg 2 (0.01) with precision specified in arg 1 (5)}
219 //! println!("Hello {0} is {2:.1$}", "x", 5, 0.01);
220 //!
221 //! // Hello {next arg ("x")} is {second of next two args (0.01) with precision
222 //! //                          specified in first of next two args (5)}
223 //! println!("Hello {} is {:.*}",    "x", 5, 0.01);
224 //!
225 //! // Hello {next arg ("x")} is {arg 2 (0.01) with precision
226 //! //                          specified in its predecessor (5)}
227 //! println!("Hello {} is {2:.*}",   "x", 5, 0.01);
228 //!
229 //! // Hello {next arg ("x")} is {arg "number" (0.01) with precision specified
230 //! //                          in arg "prec" (5)}
231 //! println!("Hello {} is {number:.prec$}", "x", prec = 5, number = 0.01);
232 //! ```
233 //!
234 //! While these:
235 //!
236 //! ```
237 //! println!("{}, `{name:.*}` has 3 fractional digits", "Hello", 3, name=1234.56);
238 //! println!("{}, `{name:.*}` has 3 characters", "Hello", 3, name="1234.56");
239 //! println!("{}, `{name:>8.*}` has 3 right-aligned characters", "Hello", 3, name="1234.56");
240 //! ```
241 //!
242 //! print three significantly different things:
243 //!
244 //! ```text
245 //! Hello, `1234.560` has 3 fractional digits
246 //! Hello, `123` has 3 characters
247 //! Hello, `     123` has 3 right-aligned characters
248 //! ```
249 //!
250 //! ## Localization
251 //!
252 //! In some programming languages, the behavior of string formatting functions
253 //! depends on the operating system's locale setting. The format functions
254 //! provided by Rust's standard library do not have any concept of locale and
255 //! will produce the same results on all systems regardless of user
256 //! configuration.
257 //!
258 //! For example, the following code will always print `1.5` even if the system
259 //! locale uses a decimal separator other than a dot.
260 //!
261 //! ```
262 //! println!("The value is {}", 1.5);
263 //! ```
264 //!
265 //! # Escaping
266 //!
267 //! The literal characters `{` and `}` may be included in a string by preceding
268 //! them with the same character. For example, the `{` character is escaped with
269 //! `{{` and the `}` character is escaped with `}}`.
270 //!
271 //! ```
272 //! assert_eq!(format!("Hello {{}}"), "Hello {}");
273 //! assert_eq!(format!("{{ Hello"), "{ Hello");
274 //! ```
275 //!
276 //! # Syntax
277 //!
278 //! To summarize, here you can find the full grammar of format strings.
279 //! The syntax for the formatting language used is drawn from other languages,
280 //! so it should not be too alien. Arguments are formatted with Python-like
281 //! syntax, meaning that arguments are surrounded by `{}` instead of the C-like
282 //! `%`. The actual grammar for the formatting syntax is:
283 //!
284 //! ```text
285 //! format_string := <text> [ maybe-format <text> ] *
286 //! maybe-format := '{' '{' | '}' '}' | <format>
287 //! format := '{' [ argument ] [ ':' format_spec ] '}'
288 //! argument := integer | identifier
289 //!
290 //! format_spec := [[fill]align][sign]['#']['0'][width]['.' precision][type]
291 //! fill := character
292 //! align := '<' | '^' | '>'
293 //! sign := '+' | '-'
294 //! width := count
295 //! precision := count | '*'
296 //! type := identifier | '?' | ''
297 //! count := parameter | integer
298 //! parameter := argument '$'
299 //! ```
300 //!
301 //! # Formatting traits
302 //!
303 //! When requesting that an argument be formatted with a particular type, you
304 //! are actually requesting that an argument ascribes to a particular trait.
305 //! This allows multiple actual types to be formatted via `{:x}` (like [`i8`] as
306 //! well as [`isize`]). The current mapping of types to traits is:
307 //!
308 //! * *nothing* â‡’ [`Display`]
309 //! * `?` â‡’ [`Debug`]
310 //! * `x?` â‡’ [`Debug`] with lower-case hexadecimal integers
311 //! * `X?` â‡’ [`Debug`] with upper-case hexadecimal integers
312 //! * `o` â‡’ [`Octal`](trait.Octal.html)
313 //! * `x` â‡’ [`LowerHex`](trait.LowerHex.html)
314 //! * `X` â‡’ [`UpperHex`](trait.UpperHex.html)
315 //! * `p` â‡’ [`Pointer`](trait.Pointer.html)
316 //! * `b` â‡’ [`Binary`]
317 //! * `e` â‡’ [`LowerExp`](trait.LowerExp.html)
318 //! * `E` â‡’ [`UpperExp`](trait.UpperExp.html)
319 //!
320 //! What this means is that any type of argument which implements the
321 //! [`fmt::Binary`][`Binary`] trait can then be formatted with `{:b}`. Implementations
322 //! are provided for these traits for a number of primitive types by the
323 //! standard library as well. If no format is specified (as in `{}` or `{:6}`),
324 //! then the format trait used is the [`Display`] trait.
325 //!
326 //! When implementing a format trait for your own type, you will have to
327 //! implement a method of the signature:
328 //!
329 //! ```
330 //! # #![allow(dead_code)]
331 //! # use std::fmt;
332 //! # struct Foo; // our custom type
333 //! # impl fmt::Display for Foo {
334 //! fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
335 //! # write!(f, "testing, testing")
336 //! # } }
337 //! ```
338 //!
339 //! Your type will be passed as `self` by-reference, and then the function
340 //! should emit output into the `f.buf` stream. It is up to each format trait
341 //! implementation to correctly adhere to the requested formatting parameters.
342 //! The values of these parameters will be listed in the fields of the
343 //! [`Formatter`] struct. In order to help with this, the [`Formatter`] struct also
344 //! provides some helper methods.
345 //!
346 //! Additionally, the return value of this function is [`fmt::Result`] which is a
347 //! type alias of [`Result`]`<(), `[`std::fmt::Error`]`>`. Formatting implementations
348 //! should ensure that they propagate errors from the [`Formatter`] (e.g., when
349 //! calling [`write!`]). However, they should never return errors spuriously. That
350 //! is, a formatting implementation must and may only return an error if the
351 //! passed-in [`Formatter`] returns an error. This is because, contrary to what
352 //! the function signature might suggest, string formatting is an infallible
353 //! operation. This function only returns a result because writing to the
354 //! underlying stream might fail and it must provide a way to propagate the fact
355 //! that an error has occurred back up the stack.
356 //!
357 //! An example of implementing the formatting traits would look
358 //! like:
359 //!
360 //! ```
361 //! use std::fmt;
362 //!
363 //! #[derive(Debug)]
364 //! struct Vector2D {
365 //!     x: isize,
366 //!     y: isize,
367 //! }
368 //!
369 //! impl fmt::Display for Vector2D {
370 //!     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
371 //!         // The `f` value implements the `Write` trait, which is what the
372 //!         // write! macro is expecting. Note that this formatting ignores the
373 //!         // various flags provided to format strings.
374 //!         write!(f, "({}, {})", self.x, self.y)
375 //!     }
376 //! }
377 //!
378 //! // Different traits allow different forms of output of a type. The meaning
379 //! // of this format is to print the magnitude of a vector.
380 //! impl fmt::Binary for Vector2D {
381 //!     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
382 //!         let magnitude = (self.x * self.x + self.y * self.y) as f64;
383 //!         let magnitude = magnitude.sqrt();
384 //!
385 //!         // Respect the formatting flags by using the helper method
386 //!         // `pad_integral` on the Formatter object. See the method
387 //!         // documentation for details, and the function `pad` can be used
388 //!         // to pad strings.
389 //!         let decimals = f.precision().unwrap_or(3);
390 //!         let string = format!("{:.*}", decimals, magnitude);
391 //!         f.pad_integral(true, "", &string)
392 //!     }
393 //! }
394 //!
395 //! fn main() {
396 //!     let myvector = Vector2D { x: 3, y: 4 };
397 //!
398 //!     println!("{}", myvector);       // => "(3, 4)"
399 //!     println!("{:?}", myvector);     // => "Vector2D {x: 3, y:4}"
400 //!     println!("{:10.3b}", myvector); // => "     5.000"
401 //! }
402 //! ```
403 //!
404 //! ### `fmt::Display` vs `fmt::Debug`
405 //!
406 //! These two formatting traits have distinct purposes:
407 //!
408 //! - [`fmt::Display`][`Display`] implementations assert that the type can be faithfully
409 //!   represented as a UTF-8 string at all times. It is **not** expected that
410 //!   all types implement the [`Display`] trait.
411 //! - [`fmt::Debug`][`Debug`] implementations should be implemented for **all** public types.
412 //!   Output will typically represent the internal state as faithfully as possible.
413 //!   The purpose of the [`Debug`] trait is to facilitate debugging Rust code. In
414 //!   most cases, using `#[derive(Debug)]` is sufficient and recommended.
415 //!
416 //! Some examples of the output from both traits:
417 //!
418 //! ```
419 //! assert_eq!(format!("{} {:?}", 3, 4), "3 4");
420 //! assert_eq!(format!("{} {:?}", 'a', 'b'), "a 'b'");
421 //! assert_eq!(format!("{} {:?}", "foo\n", "bar\n"), "foo\n \"bar\\n\"");
422 //! ```
423 //!
424 //! # Related macros
425 //!
426 //! There are a number of related macros in the [`format!`] family. The ones that
427 //! are currently implemented are:
428 //!
429 //! ```ignore (only-for-syntax-highlight)
430 //! format!      // described above
431 //! write!       // first argument is a &mut io::Write, the destination
432 //! writeln!     // same as write but appends a newline
433 //! print!       // the format string is printed to the standard output
434 //! println!     // same as print but appends a newline
435 //! eprint!      // the format string is printed to the standard error
436 //! eprintln!    // same as eprint but appends a newline
437 //! format_args! // described below.
438 //! ```
439 //!
440 //! ### `write!`
441 //!
442 //! This and [`writeln!`] are two macros which are used to emit the format string
443 //! to a specified stream. This is used to prevent intermediate allocations of
444 //! format strings and instead directly write the output. Under the hood, this
445 //! function is actually invoking the [`write_fmt`] function defined on the
446 //! [`std::io::Write`] trait. Example usage is:
447 //!
448 //! ```
449 //! # #![allow(unused_must_use)]
450 //! use std::io::Write;
451 //! let mut w = Vec::new();
452 //! write!(&mut w, "Hello {}!", "world");
453 //! ```
454 //!
455 //! ### `print!`
456 //!
457 //! This and [`println!`] emit their output to stdout. Similarly to the [`write!`]
458 //! macro, the goal of these macros is to avoid intermediate allocations when
459 //! printing output. Example usage is:
460 //!
461 //! ```
462 //! print!("Hello {}!", "world");
463 //! println!("I have a newline {}", "character at the end");
464 //! ```
465 //! ### `eprint!`
466 //!
467 //! The [`eprint!`] and [`eprintln!`] macros are identical to
468 //! [`print!`] and [`println!`], respectively, except they emit their
469 //! output to stderr.
470 //!
471 //! ### `format_args!`
472 //!
473 //! This is a curious macro used to safely pass around
474 //! an opaque object describing the format string. This object
475 //! does not require any heap allocations to create, and it only
476 //! references information on the stack. Under the hood, all of
477 //! the related macros are implemented in terms of this. First
478 //! off, some example usage is:
479 //!
480 //! ```
481 //! # #![allow(unused_must_use)]
482 //! use std::fmt;
483 //! use std::io::{self, Write};
484 //!
485 //! let mut some_writer = io::stdout();
486 //! write!(&mut some_writer, "{}", format_args!("print with a {}", "macro"));
487 //!
488 //! fn my_fmt_fn(args: fmt::Arguments) {
489 //!     write!(&mut io::stdout(), "{}", args);
490 //! }
491 //! my_fmt_fn(format_args!(", or a {} too", "function"));
492 //! ```
493 //!
494 //! The result of the [`format_args!`] macro is a value of type [`fmt::Arguments`].
495 //! This structure can then be passed to the [`write`] and [`format`] functions
496 //! inside this module in order to process the format string.
497 //! The goal of this macro is to even further prevent intermediate allocations
498 //! when dealing with formatting strings.
499 //!
500 //! For example, a logging library could use the standard formatting syntax, but
501 //! it would internally pass around this structure until it has been determined
502 //! where output should go to.
503 //!
504 //! [`fmt::Result`]: Result
505 //! [`Result`]: core::result::Result
506 //! [`std::fmt::Error`]: Error
507 //! [`write!`]: core::write
508 //! [`write`]: core::write
509 //! [`format!`]: crate::format
510 //! [`to_string`]: crate::string::ToString
511 //! [`writeln!`]: core::writeln
512 //! [`write_fmt`]: ../../std/io/trait.Write.html#method.write_fmt
513 //! [`std::io::Write`]: ../../std/io/trait.Write.html
514 //! [`print!`]: ../../std/macro.print.html
515 //! [`println!`]: ../../std/macro.println.html
516 //! [`eprint!`]: ../../std/macro.eprint.html
517 //! [`eprintln!`]: ../../std/macro.eprintln.html
518 //! [`format_args!`]: core::format_args
519 //! [`fmt::Arguments`]: Arguments
520 //! [`format`]: crate::format
521
522 #![stable(feature = "rust1", since = "1.0.0")]
523
524 #[unstable(feature = "fmt_internals", issue = "none")]
525 pub use core::fmt::rt;
526 #[stable(feature = "fmt_flags_align", since = "1.28.0")]
527 pub use core::fmt::Alignment;
528 #[stable(feature = "rust1", since = "1.0.0")]
529 pub use core::fmt::Error;
530 #[stable(feature = "rust1", since = "1.0.0")]
531 pub use core::fmt::{write, ArgumentV1, Arguments};
532 #[stable(feature = "rust1", since = "1.0.0")]
533 pub use core::fmt::{Binary, Octal};
534 #[stable(feature = "rust1", since = "1.0.0")]
535 pub use core::fmt::{Debug, Display};
536 #[stable(feature = "rust1", since = "1.0.0")]
537 pub use core::fmt::{DebugList, DebugMap, DebugSet, DebugStruct, DebugTuple};
538 #[stable(feature = "rust1", since = "1.0.0")]
539 pub use core::fmt::{Formatter, Result, Write};
540 #[stable(feature = "rust1", since = "1.0.0")]
541 pub use core::fmt::{LowerExp, UpperExp};
542 #[stable(feature = "rust1", since = "1.0.0")]
543 pub use core::fmt::{LowerHex, Pointer, UpperHex};
544
545 use crate::string;
546
547 /// The `format` function takes an [`Arguments`] struct and returns the resulting
548 /// formatted string.
549 ///
550 /// The [`Arguments`] instance can be created with the [`format_args!`] macro.
551 ///
552 /// # Examples
553 ///
554 /// Basic usage:
555 ///
556 /// ```
557 /// use std::fmt;
558 ///
559 /// let s = fmt::format(format_args!("Hello, {}!", "world"));
560 /// assert_eq!(s, "Hello, world!");
561 /// ```
562 ///
563 /// Please note that using [`format!`] might be preferable.
564 /// Example:
565 ///
566 /// ```
567 /// let s = format!("Hello, {}!", "world");
568 /// assert_eq!(s, "Hello, world!");
569 /// ```
570 ///
571 /// [`format_args!`]: core::format_args
572 /// [`format!`]: crate::format
573 #[stable(feature = "rust1", since = "1.0.0")]
574 pub fn format(args: Arguments<'_>) -> string::String {
575     let capacity = args.estimated_capacity();
576     let mut output = string::String::with_capacity(capacity);
577     output.write_fmt(args).expect("a formatting trait implementation returned an error");
578     output
579 }