Macro core::concat1.0.0 [] [src]

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

Concatenates literals into a static string slice.

For more information, see the documentation for std::concat!.