I need to check whether the identifier begins with an underscore. This does not work:
#[macro_export]
macro_rules! UNDECORED {
(_$_i:ident) => {... do something if underscored};
($_i:ident) => {... do something else};
}
Where is the mistake?