std::concat

Macro std::concat

macro_rules! concat {
    ($($e:expr),*) => { ... };
}

Concatenates literals into a static string slice.

This macro takes any number of comma-separated literals, yielding an expression of type &'static str which represents all of the literals concatenated left-to-right.

Integer and floating point literals are stringified in order to be concatenated.

Examples

let s = concat!("test", 10, 'b', true);
assert_eq!(s, "test10btrue");

© 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.concat.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部