[][src]Macro smoljson::json

macro_rules! json {
    (null) => { ... };
    (true) => { ... };
    (false) => { ... };
    ({}) => { ... };
    ([]) => { ... };
    ([ $($tt:tt)+ ]) => { ... };
    ({ $($tt:tt)+ }) => { ... };
    ($other:expr) => { ... };
}