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
I think it would be nice to have a macro helpers section. What do I mean by this? I mean those convenient methods that Rust gives us that are commonly used in macros such as stringify! and unstringify!. I was just searching high and low for a method to do the opposite of stringify! to finally figure out it was unstringify! (duh right?). But it could have easily been tokenize! or some other word, or nothing at all.
Where am I going with this rant? It would be convenient to collect all those macros which are helpful in macro building into their own section of this little book. Assuming there are enough of these things to put into their own section, that could be helpful and save us devs a lot of time!
The text was updated successfully, but these errors were encountered:
I think it would be nice to have a macro helpers section. What do I mean by this? I mean those convenient methods that Rust gives us that are commonly used in macros such as
stringify!
andunstringify!
. I was just searching high and low for a method to do the opposite ofstringify!
to finally figure out it wasunstringify!
(duh right?). But it could have easily been tokenize! or some other word, or nothing at all.Where am I going with this rant? It would be convenient to collect all those macros which are helpful in macro building into their own section of this little book. Assuming there are enough of these things to put into their own section, that could be helpful and save us devs a lot of time!
The text was updated successfully, but these errors were encountered: