Skip to main content

tag

Macro tag 

Source
macro_rules! tag {
    ($key:tt : $val:expr) => { ... };
}
Expand description

Tag inline macro.

use co_primitives::tag;
let value = tag!("hello": "world");
println!("tag: {:?}", value);