std::concat!
with support for const
variables and expressions.
Works on stable Rust ✨.
Add constcat
to your Cargo manifest.
toml
[dependencies]
constcat = "0.1.0"
Import the macro using the following.
rust
use constcat::constcat;
```rust use constcat::constcat;
const EX: &str = constcat!("string", 10, 'c', true, 3.14, VARIABLE, expr()); assert_eq!(EX, "string10ctrue3.14constcat🎉");
const VARIABLE: &str = env!("CARGOPKGNAME");
const fn expr() -> &'static str { "🎉" } ```
Licensed under either of
at your option.