You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
macro_rules! calculate {(eval $e:expr) => {{let val:usize = $e;// Force types to be unsigned integers
println!("{} = {}", stringify!{$e}, val);}};}
what is the implication of using curly braces with stringify! ? Looks like those do not change program behaviour in any way, compared to normal parentheses.