std::concat!
with support for const
variables and expressions.
Works on stable Rust ✨.
Add constcat
to your Cargo manifest.
toml
[dependencies]
constcat = "0.2.0"
Import the macro using the following.
rust
use constcat::concat;
concat!
works exactly like std::concat!
except you can now pass variables and
constant expressions.
```rust use constcat::concat;
const CRATENAME: &str = env!("CARGOPKGNAME"); const CRATEVERSION: &str = env!("CARGOPKGVERSION"); const fn tada() -> &'static str { "🎉" } const VERSION: &str = concat!(CRATENAME, " ", CRATEVERSION, tada()); ```
Licensed under either of
at your option.