macro_rules! log {
($($x:expr),*) => {
{
$(
//how to detect $x in the Macro repetition?
)*
}
};
}
使いたくない($($x:ident),*)
。マクロはlog!
式をログに記録できるので、変数の型を一致させたいと考えています。
macro_rules! log {
($($x:expr),*) => {
{
$(
//how to detect $x in the Macro repetition?
)*
}
};
}
使いたくない($($x:ident),*)
。マクロはlog!
式をログに記録できるので、変数の型を一致させたいと考えています。