std::format_args

Macro std::format_args

macro_rules! format_args {
    ($fmt:expr, $($args:tt)*) => { ... };
}

The core macro for formatted string creation & output.

This macro produces a value of type fmt::Arguments. This value can be passed to the functions in std::fmt for performing useful functions. All other formatting macros (format!, write!, println!, etc) are proxied through this one.

For more information, see the documentation in std::fmt.

Examples

use std::fmt;

let s = fmt::format(format_args!("hello {}", "world"));
assert_eq!(s, format!("hello {}", "world"));

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/macro.format_args.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部