0
macro_rules! log {
    ($($x:expr),*) => {
        {
            $(
             //how to detect $x in the Macro repetition?

            )*
        }
    };
}

使いたくない($($x:ident),*)。マクロはlog!式をログに記録できるので、変数の型を一致させたいと考えています。

4

1 に答える 1