A Practical Intro to Macros in Rust

One feature of Rust that I’m rather enamoured with is its macro system. Known as “macro by example” (MBE) or sometimes referred to as macro_rules, it provides you with an impressive amount of power whilst not allowing for the sort of evil tricks you can … Read more

Similar