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