macro_rules! tag {
($key:tt : $val:expr) => { ... };
}Expand description
Tag inline macro.
use co_primitives::tag;
let value = tag!("hello": "world");
println!("tag: {:?}", value);macro_rules! tag {
($key:tt : $val:expr) => { ... };
}Tag inline macro.
use co_primitives::tag;
let value = tag!("hello": "world");
println!("tag: {:?}", value);