monolith/src/macros.rs

10 lines
142 B
Rust
Raw Normal View History

2019-12-11 07:12:57 +01:00
#[macro_export]
macro_rules! str {
() => {
String::new()
};
($val: expr) => {
ToString::to_string(&$val)
};
}