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
In this macro for Servo (PR), I'm taking in an ident, using it as a method name, and later stringify!ing it. Unfortunately, the method name needs to be title case, but the string version needs to be lowercase. I currently get around this by using stringify!($attr).to_ascii_lower().as_slice() but this executes at runtime which is slightly inefficient.
Could we have variants of stringify! that work at compile time?